wip contact tree

This commit is contained in:
2024-10-14 09:47:37 +02:00
parent e82a99c312
commit d795d328d3
5 changed files with 126 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
#pragma once
#include <solanaceae/contact/contact_model3.hpp>
#include "./texture_cache_defs.hpp"
// fwd
struct Theme;
class ContactTreeWindow {
bool _show_window {true};
Contact3Registry& _cr;
Theme& _theme;
ContactTextureCache& _ctc;
public:
ContactTreeWindow(Contact3Registry& cr, Theme& theme, ContactTextureCache& ctc);
void render(void);
};