Files
Seele/src/Engine/Graphics/Command.cpp
T

22 lines
224 B
C++
Raw Normal View History

2023-11-15 00:06:00 +01:00
#include "Command.h"
using namespace Seele;
using namespace Seele::Gfx;
RenderCommand::RenderCommand()
{
}
RenderCommand::~RenderCommand()
{
}
ComputeCommand::ComputeCommand()
{
}
ComputeCommand::~ComputeCommand()
{
}