explose base and imgui as plugin

This commit is contained in:
2023-11-02 00:14:34 +01:00
parent 0078850db4
commit 95a037ea35
8 changed files with 317 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
#pragma once
#include <solanaceae/crdtnotes/crdtnotes.hpp>
class CRDTNotesImGui {
CRDTNotes& _notes;
bool _show_global_list {true};
public:
CRDTNotesImGui(CRDTNotes& notes);
float render(void);
};