LibLine: Send over some properties when being inspected

This commit is contained in:
AnotherTest 2020-05-26 15:21:44 +04:30 committed by Andreas Kling
commit e75f7ddb1b
Notes: sideshowbarker 2024-07-19 06:05:28 +09:00
2 changed files with 21 additions and 0 deletions

View file

@ -165,6 +165,9 @@ public:
private:
explicit Editor(Configuration configuration = {});
// ^Core::Object
virtual void save_to(JsonObject&) override;
struct KeyCallback {
KeyCallback(Function<bool(Editor&)> cb)
: callback(move(cb))