X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fmodel%2FSkeletons.hpp;h=8d106d95fefdea2492e23092f1d7dbac2b6f0ca2;hb=eba29c8ad489194cd1e3cd64b5f23424ad4384ef;hp=250ebce1dff22f7a329c217930578519f0dee4da;hpb=3542823a1af7f5063d7cc8da84efa248eb889b8a;p=blank.git diff --git a/src/model/Skeletons.hpp b/src/model/Skeletons.hpp index 250ebce..8d106d9 100644 --- a/src/model/Skeletons.hpp +++ b/src/model/Skeletons.hpp @@ -8,15 +8,15 @@ namespace blank { -class CompositeModel; +class Model; class EntityMesh; class Skeletons { public: using size_type = std::size_t; - using reference = CompositeModel &; - using const_reference = const CompositeModel &; + using reference = Model &; + using const_reference = const Model &; public: Skeletons(); @@ -30,11 +30,11 @@ public: reference operator[](size_type i) noexcept { return *skeletons[i]; } const_reference operator[](size_type i) const noexcept { return *skeletons[i]; } - CompositeModel *ByID(std::uint16_t) noexcept; - const CompositeModel *ByID(std::uint16_t) const noexcept; + Model *ByID(std::uint16_t) noexcept; + const Model *ByID(std::uint16_t) const noexcept; private: - std::vector> skeletons; + std::vector> skeletons; std::vector meshes; };