7 lines
159 B
TypeScript
7 lines
159 B
TypeScript
|
import { World } from '.';
|
||
|
export declare class System {
|
||
|
executor: Function;
|
||
|
constructor(executor: Function);
|
||
|
execute(world: World): void;
|
||
|
}
|