8 lines
192 B
TypeScript
8 lines
192 B
TypeScript
|
/**
|
||
|
* This class is in charge of computing the position of all players.
|
||
|
* Player movement is delayed by 200ms so position depends on ticks.
|
||
|
*/
|
||
|
export class PlayersPositionInterpolator {
|
||
|
|
||
|
}
|