Added layer system
This commit is contained in:
parent
7b268efa6a
commit
bb055a48d2
|
@ -24,7 +24,9 @@ add_library(lol STATIC
|
|||
"src/buffers/VertexBuffer.cpp"
|
||||
"src/buffers/ElementBuffer.cpp"
|
||||
"src/Image.cpp"
|
||||
"src/ObjectManager.cpp")
|
||||
"src/ObjectManager.cpp"
|
||||
"src/Layer.cpp"
|
||||
)
|
||||
|
||||
target_include_directories(lol PUBLIC
|
||||
${GLM_INCLUDE_DIRS}
|
||||
|
|
27
include/lol/Layer.hpp
Normal file
27
include/lol/Layer.hpp
Normal file
|
@ -0,0 +1,27 @@
|
|||
#pragma once
|
||||
|
||||
#include <string>
|
||||
|
||||
namespace lol
|
||||
{
|
||||
class CameraBase;
|
||||
|
||||
class Layer
|
||||
{
|
||||
public:
|
||||
Layer(const std::string& debugName);
|
||||
virtual ~Layer();
|
||||
|
||||
virtual void OnAttach() {}
|
||||
virtual void OnDetach() {}
|
||||
|
||||
virtual void OnUpdate() {}
|
||||
virtual void OnRender(CameraBase& camera) {}
|
||||
|
||||
inline const std::string& GetDebugName() { return debugName; }
|
||||
|
||||
private:
|
||||
std::string debugName;
|
||||
};
|
||||
|
||||
}
|
|
@ -7,4 +7,5 @@
|
|||
#include <lol/Texture.hpp>
|
||||
#include <lol/Image.hpp>
|
||||
#include <lol/Camera.hpp>
|
||||
#include <lol/util/BoundingBox.hpp>
|
||||
#include <lol/util/BoundingBox.hpp>
|
||||
#include <lol/Layer.hpp>
|
17
src/Layer.cpp
Normal file
17
src/Layer.cpp
Normal file
|
@ -0,0 +1,17 @@
|
|||
#include <lol/Layer.hpp>
|
||||
|
||||
#include <string>
|
||||
|
||||
namespace lol
|
||||
{
|
||||
Layer::Layer(const std::string& debugName) :
|
||||
debugName(debugName)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
Layer::~Layer()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue