ceditor/utils/ActionManager.h

14 lines
149 B
C++

#ifndef ACTIONMANAGER_H
#define ACTIONMANAGER_H
enum class EditAction {
Initialize,
Insert,
Delete,
};
class ActionManager {
}
#endif