cyphesis/tests/stubs/server/stubPlayer_custom.h
Erik Ogenvik 7fb146eb36 Standardize installation of standard types.
This way the base types are exposed to clients.
2018-02-06 13:45:10 +01:00

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