File: thegame.h

package info (click to toggle)
ketm 0.0.6-7
  • links: PTS
  • area: main
  • in suites: woody
  • size: 9,636 kB
  • ctags: 876
  • sloc: ansic: 7,302; sh: 405; makefile: 167
file content (21 lines) | stat: -rw-r--r-- 348 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef _THEGAME_H_
#define _THEGAME_H_

#include <SDL/SDL.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>

#include "sprite.h"
#include "particle.h"
#include "player.h"
#include "enemy.h"
#include "menu.h"
#include "score.h"
#include "bg.h"
#include "loadlv.h"

void thegame_init();
void thegame_work();
void thegame_level();
#endif