Add NitroPoint

This commit is contained in:
Bill 2021-05-14 14:45:45 -04:00
parent 0654d840dd
commit c8089982c5
3 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,3 @@
import { IPoint } from 'pixi.js';
export type INitroPoint = IPoint;

View File

@ -0,0 +1,5 @@
import { Point } from 'pixi.js';
import { INitroPoint } from './INitroPoint';
export class NitroPoint extends Point implements INitroPoint
{}

View File

@ -1,6 +1,8 @@
export * from './ColorConverter';
export * from './INitroPoint';
export * from './IRoomGeometry';
export * from './IVector3D';
export * from './NitroPoint';
export * from './NumberBank';
export * from './PointMath';
export * from './Rasterizer';