Skip to content

Instantly share code, notes, and snippets.

@SnugglePilot
Created November 2, 2013 23:01
Show Gist options
  • Save SnugglePilot/7284427 to your computer and use it in GitHub Desktop.
Save SnugglePilot/7284427 to your computer and use it in GitHub Desktop.
import project.*;
class Project extends HXProject {
public function new () {
super ();
meta = { title: "Monster Loves You!", packageName: "com.radialgames.MonsterLovesYou", version: "0.99.1", company: "Radial Games Corp." };
app = { main: "Main", path: "bin", file: "MonsterLovesYou" };
#if mobile
window = { background: 0x6dcff6, fps:60 , orientation:Orientation.LANDSCAPE };
#else
window = { background: 0x6dcff6, fps:60, width:960, height:640, orientation:Orientation.LANDSCAPE};
#end
sources.push ("src");
haxelibs.push (new Haxelib ("openfl"));
haxelibs.push (new Haxelib ("actuate"));
haxelibs.push (new Haxelib ("msignal"));
haxelibs.push (new Haxelib ("haxe-ga"));
haxelibs.push (new Haxelib ("irl"));
#if html5
haxelibs.push( new Haxelib("format"));
#end
includeAssets ("assets/img", "img", ["*"]);
includeAssets ("assets/audio", "audio", ["*"]);
includeAssets ("assets/fonts", "fonts", ["*"]);
includeAssets ("assets/content", "content", ["*"]);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment