MOS
shape.hpp
1 #pragma once
2 
3 #include <mos/core/id.hpp>
4 
5 namespace mos::gfx {
6 
8 class Shape {
9 public:
10  Shape() = default;
12  auto id() const -> unsigned int;
13 
14 private:
15  Id<Shape> id_;
16 };
17 } // namespace mos::gfx
Definition: id.hpp:8
auto id() const -> unsigned int
Unique id.
Base class for geometric shapes.
Definition: shape.hpp:8
Definition: assets.hpp:17