Add log actions
This commit is contained in:
@@ -3,6 +3,8 @@
|
||||
#include <NazaraEditor/Core/Core.hpp>
|
||||
#include <NazaraEditor/Core/Application/Action.hpp>
|
||||
#include <NazaraEditor/Core/Application/ActionStack.hpp>
|
||||
#include <NazaraEditor/Core/Application/Actions/EditorAction_Log_Clear.hpp>
|
||||
#include <NazaraEditor/Core/Application/Actions/EditorAction_Log_CopyToClipboard.hpp>
|
||||
#include <NazaraEditor/Core/Application/BaseApplication.hpp>
|
||||
#include <NazaraEditor/Core/Application/EditorLogger.hpp>
|
||||
#include <NazaraEditor/Core/Application/Level.hpp>
|
||||
|
||||
@@ -0,0 +1,15 @@
|
||||
#pragma once
|
||||
|
||||
#include <NazaraEditor/Core/Application/Action.hpp>
|
||||
|
||||
namespace Nz
|
||||
{
|
||||
class NAZARAEDITOR_CORE_API EditorAction_Log_Clear final
|
||||
: public EditorAction
|
||||
{
|
||||
EDITORACTION_BODY(EditorAction_Log_Clear, false);
|
||||
|
||||
public:
|
||||
void Execute() override;
|
||||
};
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
#pragma once
|
||||
|
||||
#include <NazaraEditor/Core/Application/Action.hpp>
|
||||
|
||||
namespace Nz
|
||||
{
|
||||
class NAZARAEDITOR_CORE_API EditorAction_Log_CopyToClipboard final
|
||||
: public EditorAction
|
||||
{
|
||||
EDITORACTION_BODY(EditorAction_Log_CopyToClipboard, false);
|
||||
|
||||
public:
|
||||
void Execute() override;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user