mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2026-02-04 17:19:09 +00:00
12 lines
287 B
C++
12 lines
287 B
C++
|
|
#ifndef CLIENTOBJECT_UNIT_C_HPP
|
||
|
|
#define CLIENTOBJECT_UNIT_C_HPP
|
||
|
|
|
||
|
|
#include "db/rec/ChrRacesRec.hpp"
|
||
|
|
|
||
|
|
class CGUnit_C {
|
||
|
|
public:
|
||
|
|
static const char* GetDisplayRaceNameFromRecord(ChrRacesRec* record, uint8_t sexIn, uint8_t* sexOut = nullptr);
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // CLIENTOBJECT_UNIT_C_HPP
|