Renderer/assets/Scripts/client/client.ts
austin 4c65b59b1b
Some checks failed
studiorailgun/Renderer/pipeline/head There was a failure building this commit
script work, player weapon on level edit
2024-08-25 12:08:14 -04:00

22 lines
470 B
TypeScript

import { Namespace } from "/Scripts/types/namespace";
/**
* The client namespace type
*/
export interface NamespaceClient extends Namespace {
// inventory: ClientInventory,
}
/**
* The client namespace (should contain all client callbacks, data, etc)
*/
export const Client: NamespaceClient = {
// inventory: {
// onMoveItemContainer: onMoveItemContainer,
// onEquipItem: onEquipItem,
// onUnequipItem: onUnequipItem,
// },
}