mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-09 01:38:20 +00:00
27 lines
373 B
C++
27 lines
373 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;
|