AlpacaLibrary/Include/Core/Classes/SpotAnimation.hpp

33 lines
899 B
C++
Raw Permalink 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(const void* Obj);
2018-12-27 18:17:09 +00:00
SpotAnimation() = default;
SpotAnimation(SpotAnimation&& Obj) = default;
SpotAnimation(const SpotAnimation& Obj) = default;
SpotAnimation& operator=(SpotAnimation&& Obj) = default;
SpotAnimation& operator=(const SpotAnimation& Obj) = default;
2018-03-18 14:38:29 +00:00
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