(frame_t from)
| 41 | public int parse_entities; // non-masked index into cl_parse_entities array |
| 42 | |
| 43 | public void set(frame_t from) { |
| 44 | valid = from.valid; |
| 45 | serverframe = from.serverframe; |
| 46 | deltaframe = from.deltaframe; |
| 47 | num_entities = from.num_entities; |
| 48 | parse_entities = from.parse_entities; |
| 49 | System.arraycopy(from.areabits, 0, areabits, 0, areabits.length); |
| 50 | playerstate.set(from.playerstate); |
| 51 | } |
| 52 | |
| 53 | public void reset() |
| 54 | { |
no outgoing calls
no test coverage detected