Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
NetWorld
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
LAIRD Timothy
NetWorld
Commits
ae7fe2e6
Commit
ae7fe2e6
authored
3 years ago
by
Timothy LAIRD
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
merge fix
parent
032bace8
master
dev
1 merge request
!9
dev to master
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
4 additions
and
4 deletions
+4
-4
.gitignore
.gitignore
+1
-0
CMakeLists.txt
CMakeLists.txt
+1
-1
build.sh
bin/build.sh
+1
-1
controlpanel.c
src/controlpanel.c
+1
-1
main-viewer.c
src/main-viewer.c
+0
-1
No files found.
.gitignore
View file @
ae7fe2e6
...
...
@@ -10,3 +10,4 @@ doc/html
nw-*
config
*.o
risk
\ No newline at end of file
This diff is collapsed.
Click to expand it.
CMakeLists.txt
View file @
ae7fe2e6
...
...
@@ -18,7 +18,7 @@ include_directories(${PROJECT_SOURCE_DIR} ${PROJECT_SOURCE_DIR}/src)
include_directories
(
${
PROJECT_SOURCE_DIR
}
/dpd/include
)
link_directories
(
${
PROJECT_SOURCE_DIR
}
/dpd
)
add_executable
(
nw-viewer
src/main-viewer.c src/networld.c src/controlpanel.c src/entity.c src/player.c src/random-map.c src/graphical-aspect.c src/window-manager.c src/menu-button.c src/main-menu.c src/int-input.c src/options-menu.c
)
add_executable
(
risk
src/main-viewer.c src/networld.c src/controlpanel.c src/entity.c src/player.c src/random-map.c src/graphical-aspect.c src/window-manager.c src/menu-button.c src/main-menu.c src/int-input.c src/options-menu.c
)
target_link_libraries
(
risk raylib pthread dl rt X11 m
)
...
...
This diff is collapsed.
Click to expand it.
bin/build.sh
View file @
ae7fe2e6
...
...
@@ -9,4 +9,4 @@ cmake ..
make
# Outputs
cp
nw-viewer
..
cp
risk
..
This diff is collapsed.
Click to expand it.
src/controlpanel.c
View file @
ae7fe2e6
...
...
@@ -101,7 +101,7 @@ void Panel_drawGame(Panel * self)
Panel_drawNode
(
self
,
&
(
self
->
world
->
nodes
[
i
])
);
}
//Panel_drawBasis(self);
//
EndDrawing();
EndDrawing
();
}
void
Panel_drawBasis
(
Panel
*
self
)
...
...
This diff is collapsed.
Click to expand it.
src/main-viewer.c
View file @
ae7fe2e6
...
...
@@ -62,7 +62,6 @@ int main(int nbArg, char ** arg)
{
DrawFPS
(
10
,
10
);
Window_Manager_display
(
manager
);
switch
(
manager
->
display
)
{
case
main_menu
:
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment