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, Health as HealthComponent,
Damage as DamageComponent, Damage as DamageComponent,
PlayerCharacter as PlayerCharacterComponent, PlayerCharacter as PlayerCharacterComponent,
Lifetime as LifetimeComponent, Lifetime as LifetimeComponent
Input as InputComponent
} from "./types" } from "./types"
export type GooplerComponentType = export type GooplerComponentType =
@ -17,7 +16,6 @@ export type GooplerComponentType =
| DamageComponent | DamageComponent
| PlayerCharacterComponent | PlayerCharacterComponent
| LifetimeComponent | LifetimeComponent
| InputComponent
export type GooplerComponent = Component<GooplerComponentType> export type GooplerComponent = Component<GooplerComponentType>
@ -51,11 +49,6 @@ export const PlayerCharacter = component<PlayerCharacterComponent>("PlayerCharac
*/ */
export const Lifetime = component<LifetimeComponent>("Lifetime") export const Lifetime = component<LifetimeComponent>("Lifetime")
/**
* The {@link InputComponent | Input} component constructor.
*/
export const Input = component<InputComponent>("Input")
/** /**
* This is a test component constructor. * This is a test component constructor.
* *

View file

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