AlpacaLibrary/Include/Core/Classes/SpotAnimation.hpp

28 lines
674 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>
2018-03-18 14:38:29 +00:00
namespace Internal
2018-01-09 15:25:29 +00:00
{
2018-03-18 14:38:29 +00:00
class SpotAnimation : public CacheableNode
{
public:
SpotAnimation();
SpotAnimation(const void* Obj);
SpotAnimation(const SpotAnimation& S);
static Class GetClass();
2018-01-09 15:25:29 +00:00
2018-03-18 14:38:29 +00:00
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;
2018-01-09 15:25:29 +00:00
2018-03-18 14:38:29 +00:00
};
}
2018-01-09 15:25:29 +00:00
#endif // SPOTANIMATION_HPP_INCLUDED