mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-14 03:11:28 +00:00
Add constructor to world content service
This commit is contained in:
parent
a19bb7b544
commit
867ff3dcfa
@ -20,6 +20,11 @@
|
|||||||
|
|
||||||
#include "world_content_service.h"
|
#include "world_content_service.h"
|
||||||
|
|
||||||
|
WorldContentService::WorldContentService()
|
||||||
|
{
|
||||||
|
SetCurrentExpansion(0);
|
||||||
|
}
|
||||||
|
|
||||||
int WorldContentService::GetCurrentExpansion() const
|
int WorldContentService::GetCurrentExpansion() const
|
||||||
{
|
{
|
||||||
return current_expansion;
|
return current_expansion;
|
||||||
|
|||||||
@ -93,6 +93,8 @@ namespace Expansion {
|
|||||||
class WorldContentService {
|
class WorldContentService {
|
||||||
public:
|
public:
|
||||||
|
|
||||||
|
WorldContentService();
|
||||||
|
|
||||||
int GetCurrentExpansion() const;
|
int GetCurrentExpansion() const;
|
||||||
void SetCurrentExpansion(int current_expansion);
|
void SetCurrentExpansion(int current_expansion);
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user