mirror of
https://github.com/zoriya/ForecastingVillage.git
synced 2025-12-06 05:46:09 +00:00
Cleaning up
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -3,7 +3,7 @@
|
||||
**/*.gcdo
|
||||
**/*.gcna
|
||||
**/vgcore*
|
||||
my_world
|
||||
my_rpg
|
||||
**/ut
|
||||
.vscode/
|
||||
.idea/
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
cmake_minimum_required(VERSION 3.15)
|
||||
project(My3D C)
|
||||
project(my_rpg C)
|
||||
|
||||
set(CMAKE_C_STANDARD 11)
|
||||
|
||||
@@ -12,7 +12,7 @@ include_directories(lib/gamacon/include/systems/controllers)
|
||||
include_directories(lib/my/include)
|
||||
include_directories(lib/xmlparser/include)
|
||||
|
||||
add_executable(My3D
|
||||
add_executable(my_rpg
|
||||
include/my.h
|
||||
include/setup.h
|
||||
lib/gamacon/include/components/controllers/keyboard_controller.h
|
||||
|
||||
2
Makefile
2
Makefile
@@ -33,7 +33,7 @@ CFLAGS = $(INCLUDE) -Wall -Wshadow -Wextra -Wno-unused-parameter
|
||||
LDFLAGS = -L lib/gamacon -L lib/my -L lib/xmlparser -L lib/quadtree\
|
||||
-lgamacon -lxmlparser -lquadtree -lmy -lcsfml-system -lcsfml-graphics -lcsfml-audio -lcsfml-window -lm
|
||||
|
||||
NAME = my_world
|
||||
NAME = my_rpg
|
||||
|
||||
CC = gcc
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
<gc_entities>
|
||||
<camera x="0" y="0" />
|
||||
<panel src="panel" x="50%" y="45%" width="300" height="69%"/>
|
||||
<text text="DPR tycoon" x="50%" y="25%" resize="false"/>
|
||||
<text text="Forcast Village" x="50%" y="25%" resize="false"/>
|
||||
<button text="Start Game" x="50%" y="50%" click="start_button" color="black" width="200" resize="false" />
|
||||
<button text="Options" x="50%" y="61%" click="options" color="black" width="200" resize="false" />
|
||||
<button text="Quit game" x="50%" y="72%" click="quit" color="black" width="200" resize="false" />
|
||||
|
||||
Reference in New Issue
Block a user