pvjc23/a3/game.h
2023-05-05 17:42:51 +02:00

33 lines
726 B
C

#ifndef _GAME_H_INCLUDE_
#define _GAME_H_INCLUDE_
#include "world.h"
#define POCET_MYSI 5
// Set of variables that expresses state of the game.
//
struct game {
// X speed of the cat
int catx;
// Y speed of the cat
int caty;
// X position of the cat
int catx_position;
// Y opsition of the cat
int caty_position;;
// X position of the mouses
int mousex[POCET_MYSI];
// Y position of the mouses
int mousey[POCET_MYSI];
// Funky message
char message[100];
};
// Returns pointer to newly allocated state
void* init_game();
// Changes world according to the game state (pressed key, screen size or other event)
int game_event(struct event* event,void* game);
#endif