Stand/Stand/CommandListAnimations.hpp
2024-10-16 11:20:42 +08:00

15 lines
272 B
C++

#pragma once
#include "CommandList.hpp"
namespace Stand
{
class CommandListAnimations : public CommandList
{
public:
static inline bool looped = true;
static inline bool partial_movement = false;
explicit CommandListAnimations(CommandList* const parent);
};
}