2023-07-17 22:55:25 +00:00
|
|
|
#ifndef __BRICKDATABASE__H__
|
|
|
|
#define __BRICKDATABASE__H__
|
2021-12-05 17:54:36 +00:00
|
|
|
|
2023-07-17 22:55:25 +00:00
|
|
|
#pragma once
|
2021-12-05 17:54:36 +00:00
|
|
|
|
2023-07-17 22:55:25 +00:00
|
|
|
#include "Entity.h"
|
2021-12-05 17:54:36 +00:00
|
|
|
|
2023-07-17 22:55:25 +00:00
|
|
|
class Brick;
|
|
|
|
using BrickList = std::vector<Brick>;
|
|
|
|
using LxfmlPath = std::string;
|
2021-12-05 17:54:36 +00:00
|
|
|
|
2023-07-17 22:55:25 +00:00
|
|
|
namespace BrickDatabase {
|
|
|
|
const BrickList& GetBricks(const LxfmlPath& lxfmlPath);
|
2021-12-05 17:54:36 +00:00
|
|
|
};
|
2023-07-17 22:55:25 +00:00
|
|
|
|
|
|
|
#endif //!__BRICKDATABASE__H__
|