Skip to content

Instantly share code, notes, and snippets.

View dstrekelj's full-sized avatar

Domagoj Štrekelj dstrekelj

View GitHub Profile
@dstrekelj
dstrekelj / Asset.hx
Created March 21, 2016 16:10
Map-creating macro
package;
class Asset
{
public var locale : String;
public var name : String;
public var resource : String;
public var type : String;
public function new(locale : String, name : String, resource : String, type : String)