project-kyoku/include/core/editorcallback.h

27 lines
386 B
C
Raw Normal View History

2022-02-23 23:45:43 +01:00
#pragma once
#include "core/systemevent.h"
#include <string>
namespace kku
{
class EditorCallback
{
public:
virtual ~EditorCallback() = default;
struct Metadata
{
const std::string group_title;
const std::string title;
};
virtual bool isEnabled() const = 0;
virtual void run() const = 0;
virtual Metadata getMetadata() const = 0;
};
}