git mv Code\Sandbox\Editor Code/Editor

Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
Esteban Papp
2021-06-29 12:41:59 -07:00
parent 9f0bbf3b74
commit e34e36cb35
1415 changed files with 0 additions and 0 deletions
+49
View File
@@ -0,0 +1,49 @@
/*
* Copyright (c) Contributors to the Open 3D Engine Project
*
* SPDX-License-Identifier: Apache-2.0 OR MIT
*
*/
#ifndef CRYINCLUDE_EDITOR_CORE_UTIL_UNDO_UTIL_H
#define CRYINCLUDE_EDITOR_CORE_UTIL_UNDO_UTIL_H
#pragma once
#include "Include/EditorCoreAPI.h"
struct IUndoObject;
class EDITOR_CORE_API CUndo
{
public:
CUndo(const char* description);
~CUndo();
void Cancel() { m_bCancelled = true; }
//! Check if undo is recording.
static bool IsRecording();
//! Check if undo is suspended.
static bool IsSuspended();
//! Record specified object.
static void Record(IUndoObject* undo);
private:
static const uint32 scDescSize = 256;
char m_description[scDescSize];
bool m_bCancelled;
bool m_bStartedRecord;
};
//! CUndoSuspend is a utility undo class
//! Define instance of this class in block of code where you want to suspend undo operations
class EDITOR_CORE_API CUndoSuspend
{
public:
CUndoSuspend();
~CUndoSuspend();
};
#endif // CRYINCLUDE_EDITOR_CORE_UTIL_UNDO_UTIL_H