tiny_link/src/assets/sprite.cpp
2021-01-03 14:08:22 -08:00

12 lines
207 B
C++

#include "sprite.h"
using namespace TL;
const Sprite::Animation* TL::Sprite::get_animation(const String& name) const
{
for (auto& it : animations)
if (it.name == name)
return ⁢
return nullptr;
}