mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 10:18:21 +00:00
32 lines
561 B
C
32 lines
561 B
C
|
#pragma once
|
||
|
#include "Entity.h"
|
||
|
|
||
|
class BrickDatabase
|
||
|
{
|
||
|
public:
|
||
|
static BrickDatabase* Instance()
|
||
|
{
|
||
|
if (m_Address == nullptr)
|
||
|
{
|
||
|
m_Address = new BrickDatabase();
|
||
|
}
|
||
|
|
||
|
return m_Address;
|
||
|
}
|
||
|
|
||
|
std::vector<Brick>& GetBricks(const std::string& lxfmlPath);
|
||
|
|
||
|
explicit BrickDatabase();
|
||
|
|
||
|
~BrickDatabase();
|
||
|
|
||
|
private:
|
||
|
std::unordered_map<std::string, std::vector<Brick>> m_Cache;
|
||
|
|
||
|
static std::vector<Brick> emptyCache;
|
||
|
|
||
|
static BrickDatabase* m_Address; //For singleton method
|
||
|
|
||
|
/* data */
|
||
|
};
|