blob: dc7be20d62b6ac674a8311d37a4e1ffe565e4469 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import { System, SystemNames } from ".";
import { Game } from "../Game";
export class NetworkUpdate extends System {
constructor() {
super(SystemNames.NetworkUpdate);
}
public update(_dt: number, _game: Game) {}
}
|