mirror of
https://github.com/worldforge/cyphesis
synced 2026-08-13 12:26:04 -04:00
11 lines
304 B
C++
11 lines
304 B
C++
//Add custom implementations of stubbed functions here; this file won't be rewritten when re-generating stubs.
|
|
std::set<std::string> Player::playableTypes;
|
|
|
|
#ifndef STUB_Player_getType
|
|
#define STUB_Player_getType
|
|
const char* Player::getType() const
|
|
{
|
|
return "player";
|
|
}
|
|
#endif //STUB_Player_getType
|
|
|