goopler/src/ReplicatedStorage/ecs/state.ts

21 lines
No EOL
422 B
TypeScript

/* eslint-disable roblox-ts/no-private-identifier */
import { CharacterRigR6 } from "@rbxts/character-promise"
import { InputKind } from "ReplicatedStorage/inputKind"
/**
* The client ECS state.
*/
export class clientState {
character?: CharacterRigR6
debugEnabled = false
isRunning = false
lastProcessedCommand?: InputKind
}
/**
* The server ECS state.
*/
export class serverState {
[index: string]: unknown
}