mirror of
https://github.com/unanmed/HumanBreak.git
synced 2025-11-19 00:42:58 +08:00
11 lines
243 B
TypeScript
11 lines
243 B
TypeScript
import { LayerState } from './layerState';
|
|
import { ICoreState, ILayerState } from './types';
|
|
|
|
export class CoreState implements ICoreState {
|
|
readonly layer: ILayerState;
|
|
|
|
constructor() {
|
|
this.layer = new LayerState();
|
|
}
|
|
}
|