14 lines
208 B
C++
14 lines
208 B
C++
|
#pragma once
|
||
|
|
||
|
namespace demonware
|
||
|
{
|
||
|
class bdLootGeneration final : public service
|
||
|
{
|
||
|
public:
|
||
|
bdLootGeneration();
|
||
|
|
||
|
private:
|
||
|
void getPlayerState(service_server* server, byte_buffer* buffer) const;
|
||
|
};
|
||
|
}
|