Zen 0.3.0
Loading...
Searching...
No Matches
ZEN_Layer.cpp
1#include <zen/layer/ZEN_Layer.h>
2
3namespace Zen {
4 Layer::Layer(int priority) : m_priority(priority) {}
5
6 int Layer::getPriority() const { return m_priority; }
7} // namespace Zen