17 lines
147 B
C++
17 lines
147 B
C++
#pragma once
|
|
|
|
#include <vector>
|
|
|
|
namespace NuakeEditor
|
|
{
|
|
class CommandBuffer
|
|
{
|
|
private:
|
|
|
|
public:
|
|
CommandBuffer();
|
|
~CommandBuffer();
|
|
|
|
|
|
};
|
|
} |