tengri/Content/types.ts

14 lines
267 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 Controller = string;
export type InputMapping = {}
export type InputMappingContext = InputMapping[];