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

15 lines
344 B
C
Raw Normal View History

2016-07-26 23:31:47 +07:00
#pragma once
2016-07-26 23:31:47 +07:00
#include "metamod.h"
2016-07-04 13:11:20 +06:00
// Information we have about each game/mod DLL.
2016-07-26 23:31:47 +07:00
struct game_modinfo_t
{
2017-05-09 19:31:09 +03:00
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
2016-07-26 23:31:47 +07:00
};
2016-07-04 13:11:20 +06:00
2017-05-09 19:31:09 +03:00
bool setup_gamedll(gamedll_t* gamedll);