mirror of
https://github.com/NoelFB/tiny_link.git
synced 2025-04-04 00:26:05 +08:00
12 lines
207 B
C++
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;
|
|
}
|