]> git.lizzy.rs Git - nothing.git/blob - src/game/debug_node.h
Remove TODO(#345)
[nothing.git] / src / game / debug_node.h
1 #ifndef DEBUG_NODE_H_
2 #define DEBUG_NODE_H_
3
4 typedef enum Debug_node_tag {
5     DEBUG_NODE_TAG_N
6 } Debug_node_tag;
7
8 typedef struct Debug_node_ref {
9     Debug_node_tag tag;
10     void *ptr;
11 } Debug_node_ref;
12
13 const char *debug_node_name(Debug_node_ref debug_node);
14 Debug_node_ref *debug_node_children(Debug_node_ref debug_node);
15
16 #endif  // DEBUG_NODE_H_