added resources & bitmap skin
This commit is contained in:
14
haxework/resources/Resources.hx
Executable file
14
haxework/resources/Resources.hx
Executable 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>();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user