mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 10:18:21 +00:00
27 lines
409 B
C
27 lines
409 B
C
|
#pragma once
|
||
|
|
||
|
#include "dCommonVars.h"
|
||
|
|
||
|
/**
|
||
|
* Database information that specifies a pet
|
||
|
*/
|
||
|
struct DatabasePet
|
||
|
{
|
||
|
/**
|
||
|
* The lot of this pet
|
||
|
*/
|
||
|
LOT lot = LOT_NULL;
|
||
|
|
||
|
/**
|
||
|
* The name of the pet
|
||
|
*/
|
||
|
std::string name;
|
||
|
|
||
|
/**
|
||
|
* The current moderation state, see PetComponent for more info
|
||
|
*/
|
||
|
int32_t moderationState = 0;
|
||
|
};
|
||
|
|
||
|
const DatabasePet DATABASE_PET_INVALID;
|