Cogs.Core
AssetPipeCommand.h
1#pragma once
2
3#include "EditorCommand.h"
4
5namespace Cogs::Core
6{
8 {
10
11 void apply() override;
12 void undo() override;
13 void applyPost() override;
14 };
15}
Contains the Engine, Renderer, resource managers and other systems needed to run Cogs....
void apply() override
Run the command.
Abstract base class for all editor batch Post commands.
Definition: EditorCommand.h:28