libspades
Ace of Spades library
servergrenade.h
1#ifndef LIBSPADES_SERVER_GRENADE_H
2#define LIBSPADES_SERVER_GRENADE_H
3#ifdef __cplusplus
4extern "C" {
5#endif
6
7#include "../common/grenade.h"
8struct GameState; /* Terrible work-around for the Droste effect. */
9
10void libspades_server_detonate_grenade(struct Grenade grenade, struct GameState *gameState);
11void libspades_server_update_grenade_array(struct GameState *gameState);
12
13#include "servergamestate.h"
14
15#ifdef __cplusplus
16}
17#endif
18#endif
The main data structure for libspades clients.
Definition gamestate.h:33
Definition grenade.h:10