Begin Refactor StageXL into Engine

This commit is contained in:
Marty Oehme 2018-08-28 16:02:43 +02:00
parent 7db2e73f53
commit 78f63a0ea0
5 changed files with 173 additions and 55 deletions

15
test/src/render_test.dart Normal file
View file

@ -0,0 +1,15 @@
import 'dart:html' as html;
import 'dart:math';
@TestOn('browser')
import 'package:rules_of_living/src/Render.dart';
import 'package:test/test.dart';
void main() {
Render sut;
setUp(() {
html.CanvasElement canvas = html.CanvasElement();
sut = Render(canvas, 8);
});
group("colorMap", () {});
}