forked from DillyzThe1/ColorCove
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build html.bat
45 lines (42 loc) · 951 Bytes
/
build html.bat
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
@echo off
title ColorCove - Build Screen
set /p menu="Build game? [Y/N/C]"
if %menu%==Y goto BuildGame
if %menu%==y goto BuildGame
if %menu%==N goto CancelGame
if %menu%==n goto CancelGame
if %menu%==C goto Credits
if %menu%==c goto Credits
cls
:BuildGame
cls
title ColorCove - Building
echo Compiling, please wait...
lime test html5 -release
echo.
echo Web build complete.
set /p menu="Recompile? [Y/N/C]"
if %menu%==Y goto BuildGame
if %menu%==y goto BuildGame
if %menu%==N goto CancelGame
if %menu%==n goto CancelGame
if %menu%==C goto Credits
if %menu%==c goto Credits
cls
exit
:CancelGame
cls
title ColorCove - Cancelling
echo Build aborted. Press any key to continue.
exit
:Credits
cls
title ColorCove - Credits
echo ColorCove
echo.
echo Dev links:
echo https://github.com/DillyzThe1
echo.
echo.
echo Press any key to continue.
exit