You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
643 B

#ifndef ONCLICK_H_
#define ONCLICK_H_
#include "../game.h"
#include "button.h"
#include "selectable.h"
void OnClickButton(Game *game, Button *button);
void OnClickContinueButton(Game *game, Button *button);
void OnClickExitButton(Game *game, Button *button);
void OnClickStartButton(Game *game, Button *button);
void OnSelectedSelectable(Game *game, Selectable *selectable);
void OnSelectedSpawnBuilding(Game *game, Selectable *selectable);
void OnSelectedSpawnWorker(Game *game, Selectable *selectable);
void OnSelectedSpawnLumberjack(Game *game, Selectable *selectable);
void OnSelectedDrawTile(Game *game, Selectable *selectable);
#endif