AlpacaLibrary/Include/Core/Classes/Region.hpp

24 lines
528 B
C++
Raw Normal View History

2017-12-25 23:49:48 +00:00
#ifndef REGION_HPP_INCLUDED
#define REGION_HPP_INCLUDED
#include "../JavaClass/Object.hpp"
#include "../JavaClass/Class.hpp"
#include <vector>
2018-01-09 15:25:29 +00:00
#include "GameObject.hpp"
2017-12-25 23:49:48 +00:00
#include "SceneTile.hpp"
class Region : public Object
{
public:
Region();
Region(const void* Obj);
Region(const Region& R);
static Class GetClass();
2018-01-09 15:25:29 +00:00
std::vector<GameObject> GetGameObjects() const;
2017-12-25 23:49:48 +00:00
std::vector<std::vector<std::vector<SceneTile>>> GetSceneTiles() const;
};
#endif // REGION_HPP_INCLUDED