2
0
mirror of https://github.com/rehlds/metamod-r.git synced 2025-03-16 07:20:33 +03:00
metamod-r/metamod/src/game_support.h
s1lentq eaf6f1ae41 Added gradle
Refactoring
2016-07-26 07:22:47 +07:00

16 lines
450 B
C

#pragma once
#include "types_meta.h" // mBOOL
#include "metamod.h" // gamedll_t
// Information we have about each game/mod DLL.
struct game_modinfo_t {
const char *name; // name (the game dir)
const char *linux_so; // filename of linux shared lib
const char *win_dll; // filename of win32 dll
const char *desc; // our long-name description
};
const game_modinfo_t *lookup_game(const char *name);
mBOOL setup_gamedll(gamedll_t *gamedll);