Extract node lifecycle, preview runtime, and Win32 input state

This commit is contained in:
2026-06-16 22:18:30 +02:00
parent 24d9d5b6e2
commit 2a2f0c7dd6
12 changed files with 420 additions and 245 deletions

View File

@@ -0,0 +1,11 @@
#pragma once
class Node;
namespace pp::panopainter
{
void legacy_ui_node_move_construct(Node& dest, Node&& src);
void legacy_ui_node_destroy(Node& node);
void legacy_ui_node_clone_copy(const Node& src, Node& dest);
void legacy_ui_node_clone_children(const Node& src, Node& dest);
}