diff --git a/src/ReplicatedStorage/ecs/components/index.ts b/src/ReplicatedStorage/ecs/components/index.ts index 45c51d7..916c171 100644 --- a/src/ReplicatedStorage/ecs/components/index.ts +++ b/src/ReplicatedStorage/ecs/components/index.ts @@ -6,8 +6,7 @@ import type { Health as HealthComponent, Damage as DamageComponent, PlayerCharacter as PlayerCharacterComponent, - Lifetime as LifetimeComponent, - Input as InputComponent + Lifetime as LifetimeComponent } from "./types" export type GooplerComponentType = @@ -17,7 +16,6 @@ export type GooplerComponentType = | DamageComponent | PlayerCharacterComponent | LifetimeComponent - | InputComponent export type GooplerComponent = Component @@ -51,11 +49,6 @@ export const PlayerCharacter = component("PlayerCharac */ export const Lifetime = component("Lifetime") -/** - * The {@link InputComponent | Input} component constructor. - */ -export const Input = component("Input") - /** * This is a test component constructor. * diff --git a/src/ReplicatedStorage/ecs/components/types.d.ts b/src/ReplicatedStorage/ecs/components/types.d.ts index 7844cff..106b881 100644 --- a/src/ReplicatedStorage/ecs/components/types.d.ts +++ b/src/ReplicatedStorage/ecs/components/types.d.ts @@ -63,13 +63,4 @@ export interface Lifetime { spawnedAt: number, length: number, elapsed: number -} - -/** - * The input component. - * - * Holds @todo - */ -export interface Input { - test: number } \ No newline at end of file