Advertisement
player_03

project.hxp

Aug 23rd, 2014 (edited)
539
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Haxe 0.55 KB | None | 0 0
  1. import project.*;
  2. import sys.FileSystem;
  3.  
  4. class Project extends HXProject {
  5.     public function new() {
  6.         super();
  7.        
  8.         meta.title = "Displaying a Bitmap";
  9.         meta.packageName = "org.openfl.samples.displayingabitmap";
  10.         meta.version = "1.0.0";
  11.         meta.company = "OpenFL Technologies";
  12.        
  13.         app.main = "Main";
  14.         app.path = "Export";
  15.         app.file = "DisplayingABitmap";
  16.        
  17.         sources.push("Source");
  18.        
  19.         haxelibs.push(new Haxelib("openfl"));
  20.        
  21.         includeAssets("Assets", "assets", null, ["*.svg"]);
  22.         icons.push(new Icon("assets/openfl.svg"));
  23.     }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement