Begin Refactor StageXL into Engine

This commit is contained in:
Marty Oehme 2018-08-28 16:02:43 +02:00
parent 9c37f87045
commit 6b0fae44b6
5 changed files with 185 additions and 23 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", () {});
}