AlpacaLibrary/Include/Core/Classes/SpotAnimation.hpp

33 lines
899 B
C++

#ifndef SPOTANIMATION_HPP_INCLUDED
#define SPOTANIMATION_HPP_INCLUDED
#include "CacheableNode.hpp"
#include "../JavaClass/Class.hpp"
#include <cstdint>
namespace Internal
{
class SpotAnimation : public CacheableNode
{
public:
SpotAnimation(const void* Obj);
SpotAnimation() = default;
SpotAnimation(SpotAnimation&& Obj) = default;
SpotAnimation(const SpotAnimation& Obj) = default;
SpotAnimation& operator=(SpotAnimation&& Obj) = default;
SpotAnimation& operator=(const SpotAnimation& Obj) = default;
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