@smoud/tiny
Version:
Fast and tiny JavaScript library for HTML5 game and playable ads creation.
25 lines (22 loc) • 858 B
JavaScript
import { BaseObject2D } from './objects/BaseObject2D';
import { Object2D } from './objects/Object2D';
import { Scene } from './objects/Scene';
import { Sprite } from './objects/Sprite';
import { Text } from './objects/Text';
import { Graphics } from './objects/Graphics';
import { BaseTexture } from './textures/BaseTexture';
import { Texture } from './textures/Texture';
import { TextureUvs } from './textures/TextureUvs';
import { RenderTexture } from './textures/RenderTexture3';
import { Rectangle } from './math/shapes/Rectangle';
Tiny.BaseObject2D = BaseObject2D;
Tiny.Object2D = Object2D;
Tiny.Scene = Scene;
Tiny.Sprite = Sprite;
Tiny.Text = Text;
Tiny.Graphics = Graphics;
Tiny.BaseTexture = BaseTexture;
Tiny.TextureUvs = TextureUvs;
Tiny.Texture = Texture;
Tiny.RenderTexture = RenderTexture;
Tiny.Rectangle = Rectangle;