Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2014
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.53 KB | None | 0 0
  1.     typedef struct          s_stuff
  2.   15{
  3.   16 │   char                  *_name;
  4.   17 │   int                   _damage;
  5.   18 │   int                   _price;
  6.   19 │   struct s_stuff        *_next;
  7.   20}                       t_stuff;
  8.   21
  9.   22typedef struct          s_character
  10.   23{
  11.   24 │   char                  *_name;
  12.   25 │   int                   _mana;
  13.   26 │   int                   _hp;
  14.   27 │   int                   _gold;
  15.   28 │   t_stuff               *_build;
  16.   29}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement