dos-vga-arena-shooter-game/game.h

15 lines
276 B
C

#ifndef __GAME_H__
#define __GAME_H__
#include "system/vga.h"
extern struct CompiledSpriteRender rabbit, mouse, bullet, enemy, enemyBullet, shotgun, shieldKiller;
extern struct SpriteBounds bounds;
struct GlobalGameState {
int difficulty;
int spawnCooldown;
};
#endif