-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.xml
executable file
·25 lines (19 loc) · 1.06 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
<?xml version="1.0" encoding="utf-8"?>
<project>
<meta title="VVSSV" package="com.matrefeytontias.VVSSV" version="1.0.0" company="Matrefeytontias" />
<app file="VVSSV" main="Main" path="bin" />
<window fps="60" background="0x333333" />
<window width="640" height="480" resizable="false" unless="mobile" />
<window fullscreen="true" if="mobile"/>
<window orientation="landscape" vsync="true" antialiasing="0" if="cpp" />
<source path="src" />
<haxelib name="HaxePunk" />
<assets path="assets/graphics/all" rename="graphics" include="*.png|*.jpg" />
<assets path="assets/graphics/desktop" rename="graphics" include="*.png|*.jpg" unless="mobile" />
<assets path="assets/graphics/mobile" rename="graphics" include="*.png|*.jpg" if="mobile" />
<assets path="assets/audio" rename="audio" include="*.mp3" if="flash" />
<assets path="assets/audio" rename="audio" include="*.wav|*.ogg" unless="flash" />
<assets path="assets/font" rename="font" include="*.ttf" />
<assets path="assets/levels" rename="levels" include="*.json" />
<icon path="assets/icon.png" />
</project>