-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.xml
More file actions
43 lines (36 loc) · 1.09 KB
/
project.xml
File metadata and controls
43 lines (36 loc) · 1.09 KB
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
<?xml version="1.0" encoding="utf-8"?>
<project>
<set name="windowwidth" value="1600" />
<set name="windowheight" value="1000" />
<meta
title="Katabot"
package="com.kvel2d.katabot"
version="1.0.0"
company="Dmitry Degtyarev"
/>
<app swf-version="17.0" if="flash"/>
<app
main="haxegon.Load"
path="bin"
file="newproject"
/>
<window width="${windowwidth}" height="${windowheight}" if="flash || cpp || neko"></window>
<window width="0" height="0" if="html5 || mobile"></window>
<window
fps="60"
background="0x000000"
orientation="landscape"
hardware="true"
vsync="true"
allow-high-dpi="true"
></window>
<source path="src" />
<haxelib name="lime" version="7.2.1" />
<haxelib name="openfl" version="8.8.0" />
<haxedef name="windowwidth" value="${windowwidth}" />
<haxedef name="windowheight" value="${windowheight}" />
<assets path="data" exclude="*.mp3" if="cpp || neko"/>
<assets path="data" exclude="*.ogg" if="flash"/>
<assets path="data" if="html5"/>
<icon path="data/icon.png"/>
</project>