mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-24 06:27:24 +00:00
9655f0ee45
fix compile issues
17 lines
281 B
C++
17 lines
281 B
C++
#ifndef BRICKDATABASE_H
|
|
#define BRICKDATABASE_H
|
|
|
|
#pragma once
|
|
|
|
#include "Entity.h"
|
|
|
|
class Brick;
|
|
using BrickList = std::vector<Brick>;
|
|
using LxfmlPath = std::string;
|
|
|
|
namespace BrickDatabase {
|
|
const BrickList& GetBricks(const LxfmlPath& lxfmlPath);
|
|
};
|
|
|
|
#endif //!BRICKDATABASE_H
|