interface case, acrylic ui, swap to make, lint

This commit is contained in:
Reid 2023-08-15 20:18:59 -07:00
parent f5584a9b0c
commit a5bc77030a
24 changed files with 353 additions and 92 deletions

View file

@ -7,7 +7,7 @@ import { InputKind } from "ReplicatedStorage/inputKind"
/**
* The client ECS state.
*/
export class clientState {
export class ClientState {
constructor(
player: Player,
character: CharacterRigR6,
@ -41,7 +41,7 @@ export class clientState {
/**
* The server ECS state.
*/
export class serverState {
export class ServerState {
constructor(
logger: Logger
) {
@ -54,4 +54,4 @@ export class serverState {
/**
* The shared ECS state.
*/
export type sharedState = serverState & clientState
export type SharedState = ServerState & ClientState