VoxelEngine/src/assets/Assets.cpp
2024-06-22 22:30:14 +03:00

13 lines
233 B
C++

#include "Assets.hpp"
Assets::~Assets() {
}
const std::vector<TextureAnimation>& Assets::getAnimations() {
return animations;
}
void Assets::store(const TextureAnimation& animation) {
animations.emplace_back(animation);
}