-
Notifications
You must be signed in to change notification settings - Fork 0
/
Project Name.nmml
49 lines (30 loc) · 1.29 KB
/
Project Name.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?xml version="1.0" encoding="utf-8"?>
<project>
<app title="HaxeFlixel Path Finding" file="haxeflixel-pathfinding" main="Main" version="0.1" company="misterpah" />
<window width="640" height="480" fps="30" orientation="portrait" resizable="true" if="web" />
<window width="640" height="480" fps="30" orientation="landscape" fullscreen="false" unless="web" />
<set name="BUILD_DIR" value="export" />
<!--<setenv name="no_console" value="1" />-->
<classpath name="source" />
<assets path="assets" if="android" >
<sound path="data/beep.wav" id="Beep" />
<!-- Your sound embedding code here... -->
</assets>
<assets path="assets" if="desktop" >
<sound path="data/beep.wav" id="Beep" />
<!-- Your sound embedding code here... -->
</assets>
<assets path="assets" if="flash" >
<sound path="data/beep.mp3" id="Beep" />
<!-- Your sound embedding code here... -->
</assets>
<assets path="assets" if="target_js" >
<sound path="data/beep.mp3" id="Beep" />
<!-- Your sound embedding code here... -->
</assets>
<assets path="assets" exclude="*.wav" if="flash" />
<assets path="assets" unless="flash" />
<icon name="assets/HaxeFlixel.svg" />
<haxelib name="nme" />
<haxelib name="flixel"/>
</project>