repo.or.cz
/
neverball-archive.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Import from seb-0515.tar.gz
[neverball-archive.git]
/
src
/
ball
/
game.h
blob
3cb28218b2227bc492582bfbe955642ef9c081fd
1
#ifndef GAME_H
2
#define GAME_H
3
4
#include <sol.h>
5
6
/*---------------------------------------------------------------------------*/
7
8
void
game_init
(
void
);
9
void
game_step
(
double
);
10
11
void
game_paint
(
void
);
12
int
game_point
(
int
,
int
);
13
int
game_click
(
int
);
14
int
game_keybd
(
int
);
15
16
/*---------------------------------------------------------------------------*/
17
18
#endif