repo.or.cz
/
vic.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
The dev goes on
[vic.git]
/
src
/
game_rules.h
blob
43639caa2816ac45d059f90b459414a71c75d5da
1
#ifndef GAME_RULES_H
2
#define GAME_RULES_H
3
4
class
IGameRules
5
{
6
public
:
7
IGameRules
() {}
8
virtual
~
IGameRules
() {}
9
10
virtual
bool
gameEnded
(
const
Game
&
g
) =
0
;
11
};
12
13
#endif
/* GAME_RULES_H */