(int i)
| 233 | |
| 234 | // todo: replace with a constructor call? |
| 235 | void G_InitEdict(int i) { |
| 236 | inuse = true; |
| 237 | classname = "noclass"; |
| 238 | gravity = 1.0f; |
| 239 | //e.s.number= e - g_edicts; |
| 240 | s = new entity_state_t(this); |
| 241 | s.number = i; |
| 242 | st = new ExtraSpawnProperties(); |
| 243 | index = i; |
| 244 | } |
| 245 | |
| 246 | public boolean setField(String key, String value) { |
| 247 | switch (key) { |
no outgoing calls
no test coverage detected