h2-mod/src/client/game/scripting/animation.hpp
2022-06-19 20:56:15 +02:00

17 lines
223 B
C++

#pragma once
#include "game/game.hpp"
#include "script_value.hpp"
namespace scripting
{
class animation final
{
public:
animation(unsigned int value);
uint64_t get_value() const;
private:
uint64_t value_;
};
}