tiny_link/src/assets/sprite.cpp

12 lines
207 B
C++
Raw Normal View History

2021-01-04 06:08:22 +08:00
#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;
}