-
Notifications
You must be signed in to change notification settings - Fork 3
/
project.xml
32 lines (27 loc) · 1.43 KB
/
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
27
28
29
30
31
32
<?xml version="1.0" encoding="utf-8"?>
<project>
<meta title="Hide-n-Stab" package="com.monsterface.hidenstab" company="MonsterFace Games"/>
<meta version="1.0.0"/>
<app file="hidenstab" main="Main" path="bin"/>
<certificate path="hidenstab.keystore" alias="creatures" password="#id3n57a8!!" if="android" unless="debug"/>
<window fps="60" background="0x000000"/>
<window width="640" height="480"/>
<window width="0" height="0" if="mobile"/>
<window orientation="landscape" vsync="true"/>
<window resizable="false"/>
<window resizable="true" if="desktop"/>
<source path="src"/>
<source path="src-server" if="server"/>
<source path="src-client" except="server"/>
<haxelib name="openfl"/>
<haxelib name="HaxePunk"/>
<haxelib name="spinehaxe" except="server"/>
<haxelib name="SpinePunk" except="server"/>
<app preloader="Preloader" except="server"/>
<assets path="assets/graphics" rename="graphics" include="*.png" type="image"/>
<assets path="assets/graphics" rename="graphics" include="*.json|*.atlas" type="text"/>
<assets path="assets/font" rename="font" include="*.fnt" type="text"/>
<assets path="assets/font" rename="font" include="*.png" type="image"/>
<assets path="assets/sound" rename="sound" include="*.mp3" type="sound" if="flash"/>
<assets path="assets/sound" rename="sound" include="*.wav" type="sound" unless="flash"/>
</project>