vertecs
Version:
A typescript entity-component-system framework
10 lines (8 loc) • 354 B
text/typescript
import ExampleClientHandler from "./ExampleClientHandler";
import { ServerNetworkSystem } from "../../../../src";
import allowedNetworkComponents from "../SharedConfiguration";
export default class ExampleServerNetworkSystem extends ServerNetworkSystem {
public constructor() {
super(allowedNetworkComponents, ExampleClientHandler);
}
}