mirror of
https://github.com/unanmed/HumanBreak.git
synced 2026-05-14 13:21:12 +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();
|
|
}
|
|
}
|