breakhack/src/monster.h

14 lines
182 B
C
Raw Normal View History

#ifndef MONSTER_H_
#define MONSTER_H_
#include <SDL2/SDL.h>
#include "sprite.h"
#include "stats.h"
typedef struct {
Sprite *sprite;
Stats stats;
} Monster;
#endif // MONSTER_H_