2
0

structured gui and models

This commit is contained in:
2018-05-10 20:56:00 +02:00
parent 4617e90374
commit 51e7822b04
3 changed files with 49 additions and 3 deletions

View File

@@ -0,0 +1,8 @@
import { Point } from './point.model';
export interface Config {
width: Number;
height: Number;
start: Point;
end: Point;
}