UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

22 lines 636 B
/** * NOTE, trying to keep to IANA registry: https://www.iana.org/assignments/media-types/media-types.xhtml */ export type GameAssetType = string; export namespace GameAssetType { let ModelGLTF: string; let ModelGLTF_JSON: string; let ModelThreeJs: string; let ArrayBuffer: string; let Texture: string; let DeferredTexture: string; let JSON: string; let Text: string; let Image: string; let ImageSvg: string; let AnimationGraph: string; let AttachmentSockets: string; let JavaScript: string; let Sound: string; let Font: string; } //# sourceMappingURL=GameAssetType.d.ts.map