-
Notifications
You must be signed in to change notification settings - Fork 10
/
CitruxEngine.nmml
executable file
·33 lines (23 loc) · 1015 Bytes
/
CitruxEngine.nmml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?xml version="1.0" encoding="utf-8"?>
<project>
<meta title="Citrux Engine Example" package="fr.aymericlamboley.test" version="1.0.0" company="Aymeric Lamboley" />
<app main="fr.aymericlamboley.test.Main" file="CitruxEngineExample" path="Export" />
<window width="640" height="450" unless="mobile" />
<window orientation="portrait" if="mobile" />
<window fps="30" />
<!-- portrait or landscape (used for mobile accelerometer direction) ! -->
<haxedef name="portrait" />
<set name="SWF_VERSION" value="10.1" />
<source path="Source" />
<haxelib name="nme" />
<haxelib name="box2d" />
<haxelib name="nape" />
<haxelib name="hxs" />
<haxelib name="spritesheet" />
<haxelib name="tilelayer" />
<haxelib name="swf" />
<haxeflag name="--dead-code-elimination" if="html5" />
<haxeflag name="--js-modern" if="html5" />
<assets path="Assets" include="*" exclude="CitruxEngine.png" />
<icon path="Assets/CitruxEngine.png" width="32" height="32" />
</project>