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