AlpacaLibrary/Include/Core/Classes/SpotAnimation.hpp

25 lines
599 B
C++
Raw Normal View History

2018-01-09 15:25:29 +00:00
#ifndef SPOTANIMATION_HPP_INCLUDED
#define SPOTANIMATION_HPP_INCLUDED
#include "CacheableNode.hpp"
#include "../JavaClass/Class.hpp"
#include <cstdint>
class SpotAnimation : public CacheableNode
{
public:
SpotAnimation();
SpotAnimation(const void* Obj);
SpotAnimation(const SpotAnimation& S);
static Class GetClass();
std::int32_t GetAngle() const;
std::int32_t GetAnimationID() const;
std::int32_t GetID() const;
std::int32_t GetScaleX() const;
std::int32_t GetScaleY() const;
};
#endif // SPOTANIMATION_HPP_INCLUDED