blob: 1d5653727b9137b55cefbb7a121978eb4496e975 (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* copyright (c) 2007 magnus auvinen, see licence.txt for more info */
#include <engine/e_config.h>
#include "gs_common.h"
#include "gs_game_dm.h"
void GAMECONTROLLER_DM::tick()
{
do_player_score_wincheck();
GAMECONTROLLER::tick();
}
|