remove unused component

This commit is contained in:
Reid 2023-07-20 22:31:34 -07:00
parent 760a4b8e5a
commit 878d285b3e
2 changed files with 1 additions and 17 deletions

View file

@ -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<GooplerComponentType>
@ -51,11 +49,6 @@ export const PlayerCharacter = component<PlayerCharacterComponent>("PlayerCharac
*/
export const Lifetime = component<LifetimeComponent>("Lifetime")
/**
* The {@link InputComponent | Input} component constructor.
*/
export const Input = component<InputComponent>("Input")
/**
* This is a test component constructor.
*

View file

@ -64,12 +64,3 @@ export interface Lifetime {
length: number,
elapsed: number
}
/**
* The input component.
*
* Holds @todo
*/
export interface Input {
test: number
}