server/src/types/asset.ts

10 lines
173 B
TypeScript

export type AssetType = 'Texture' | 'CubeTexture' | 'Mesh';
export interface Asset {
name: string;
path?: string;
type: AssetType;
data: any;
remote?: boolean;
}