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.
113
Commits
1
Branch
0
Tags
3.5 MiB
Tag:
Branch:
Tree:
0a268591c2
main
Branches
Tags
${ item.name }
Create tag
${ searchTerm }
Create branch
${ searchTerm }
from '0a268591c2'
${ noResults }
roguish
/
events.hpp
8 lines
80 B
Raw
Normal View
History
Unescape
Escape
GUI is now decoupled from the ECS using the new DinkyECS event queues. That makes it easier to update and change the GUI without having to constantly alter the systems.
3 weeks ago
#
pragma once
More refactoring to get the GUI dumber.
3 weeks ago
namespace
Events
{
enum
GUI
{
START
,
HIT
,
MISS
,
DEAD
}
;
}