This commit is contained in:
jl777
2019-02-06 03:00:52 -11:00
parent 5ffb4153f7
commit 125dee8480
2 changed files with 8 additions and 5 deletions

View File

@@ -313,17 +313,20 @@
/*
* Now we define the structures and types
*/
#ifndef rogue_packitem
struct rogue_packitem
{
int32_t type,launch,count,which,hplus,dplus,arm,flags,group;
char damage[8],hurldmg[8];
};
#endif
#ifndef rogue_player
struct rogue_player
{
int32_t gold,hitpoints,strength,level,experience,packsize,dungeonlevel,pad;
struct rogue_packitem roguepack[MAXPACK];
};
#endif
struct rogue_state
{