15 lines
339 B
TypeScript
15 lines
339 B
TypeScript
// Content/types.ts
|
|
|
|
export type Float = number;
|
|
export type Integer = number;
|
|
export type Text = string;
|
|
|
|
export type Vector = [Float, Float, Float];
|
|
export type Color = { R: Integer; G: Integer; B: Integer; A: Integer };
|
|
|
|
export type Controller = string;
|
|
|
|
export type InputMapping = {}
|
|
|
|
export type InputMappingContext = InputMapping[];
|