assassin-bug/framework/ecs/system.d.ts

7 lines
159 B
TypeScript
Raw Normal View History

2022-11-26 01:22:02 +00:00
import { World } from '.';
export declare class System {
executor: Function;
constructor(executor: Function);
execute(world: World): void;
}