2020-11-19 00:12:51 +01:00
|
|
|
/*
|
|
|
|
* This software is licensed under the terms of the MIT License.
|
|
|
|
* See COPYING for further information.
|
|
|
|
* ---
|
2024-05-16 23:30:41 +02:00
|
|
|
* Copyright (c) 2011-2024, Lukas Weber <laochailan@web.de>.
|
|
|
|
* Copyright (c) 2012-2024, Andrei Alexeyev <akari@taisei-project.org>.
|
|
|
|
*/
|
2020-11-19 00:12:51 +01:00
|
|
|
|
|
|
|
#include "gamemode.h"
|
2024-05-17 04:41:28 +02:00
|
|
|
#include "log.h"
|
2020-11-19 00:12:51 +01:00
|
|
|
|
|
|
|
void gamemode_init(void) {
|
|
|
|
log_info("Compiled without GameMode integration");
|
|
|
|
}
|
|
|
|
|
|
|
|
void gamemode_shutdown(void) {
|
|
|
|
|
|
|
|
}
|