2024-10-30 07:30:20 +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
|
|
|
|
2024-10-30 07:30:20 +00:00
|
|
|
#endif //!BRICKDATABASE_H
|