added resources & bitmap skin

This commit is contained in:
2013-11-22 16:27:43 +04:00
parent 7d45f0fac7
commit cba776ec51
12 changed files with 173 additions and 9 deletions

14
haxework/resources/Resources.hx Executable file
View File

@@ -0,0 +1,14 @@
package haxework.resources;
import flash.display.BitmapData;
class Resources implements IResources {
public var image(default, null):Map<String, BitmapData>;
public var color(default, null):Map<String, Int>;
public function new() {
image = new Map<String, BitmapData>();
color = new Map<String, Int>();
}
}