Files
Nuake-custom/Editor/src/Commands/CommandBuffer.h
2024-04-26 21:19:08 -04:00

17 lines
147 B
C++

#pragma once
#include <vector>
namespace NuakeEditor
{
class CommandBuffer
{
private:
public:
CommandBuffer();
~CommandBuffer();
};
}