mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-11 02:28:18 +00:00
11 lines
229 B
C++
11 lines
229 B
C++
/* 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 gameobject_dm::tick()
|
|
{
|
|
do_player_score_wincheck();
|
|
gameobject::tick();
|
|
}
|