19 lines
378 B
Haxe
Executable File
19 lines
378 B
Haxe
Executable File
package haxework.gui;
|
|
|
|
import flash.display.Graphics;
|
|
import flash.display.Sprite;
|
|
|
|
class SpriteView extends View<Sprite> {
|
|
|
|
public function new() {
|
|
super(new Sprite());
|
|
}
|
|
|
|
/*override public function update():Void {
|
|
super.update();
|
|
var g:Graphics = content.graphics;
|
|
g.lineStyle(1, 0x00ff00);
|
|
g.drawRect(0, 0, width, height);
|
|
g.lineStyle();
|
|
}*/
|
|
} |