14 lines
326 B
Haxe
Executable File
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>();
|
|
}
|
|
} |