-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.xml
26 lines (20 loc) · 946 Bytes
/
project.xml
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
<?xml version="1.0" encoding="utf-8"?>
<project>
<meta title="Do No Harm" package="com.donoharm" version="1.0.0" company="" />
<app file="Main" main="Main" path="bin" />
<window fps="30" background="0x000000" />
<window width="1000" height="600" resizable="true" unless="mobile" />
<window fullscreen="true" if="mobile" />
<window orientation="landscape" vsync="true" antialiasing="0" if="cpp" />
<source path="src" />
<haxelib name="openfl" />
<haxelib name="nape" />
<haxelib name="HaxePunk" />
<haxelib name="HaxePunkTmx" />
<assets path="assets/graphics" rename="gfx" include="*.png|*.jpg" />
<assets path="assets/audio" rename="sfx" include="*.wav|*.mp3" if="flash" />
<assets path="assets/audio" rename="sfx" include="*.ogg|*.mp3" unless="flash" />
<assets path="assets/font" rename="font" include="*.ttf" />
<assets path="assets/maps" rename="maps" include="*.tmx" />
<icon path="assets/HaxePunk.svg" />
</project>