This website works better with JavaScript.
Explore
Help
Sign In
learn-code-the-hard-way
/
roguish
Watch
1
Star
0
Fork
You've already forked roguish
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
The next little game in the series where I make a fancy rogue game.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44
Commits
1
Branch
0
Tags
3.5 MiB
Tag:
Branch:
Tree:
cc4f83a1d1
main
Branches
Tags
${ item.name }
Create tag
${ searchTerm }
Create branch
${ searchTerm }
from 'cc4f83a1d1'
${ noResults }
roguish
/
main.cpp
7 lines
67 B
Raw
Normal View
History
Unescape
Escape
Pulled most of the variables out so now I can carve out functions.
2 months ago
#
include
"gui.hpp"
Mostly working prototype that uses FTXUI to render to SFML and then plays a sound when you hit a wall.
2 months ago
Initial commit that has most of what I need.
2 months ago
int
main
(
)
{
Pulled most of the variables out so now I can carve out functions.
2 months ago
GUI
gui
;
return
gui
.
main
(
)
;
Initial commit that has most of what I need.
2 months ago
}