13 lines
187 B
C++
13 lines
187 B
C++
#pragma once
|
|
|
|
#include "CommandList.hpp"
|
|
|
|
namespace Stand
|
|
{
|
|
class CommandListTransform : public CommandList
|
|
{
|
|
public:
|
|
explicit CommandListTransform(CommandList* const parent);
|
|
};
|
|
}
|