Files
haxework/haxework/resources/Resources.hx
2013-11-22 16:27:43 +04:00

14 lines
326 B
Haxe
Executable File

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>();
}
}