3htree_init :: (tree_copy: []int, stat: *Statistics) {}
5htree_fit_zoom :: () -> Camera2D {
6 cam := camera;
7 cam.zoom = 1.0;
8 cam.offset = CENTER;
9 cam.target = CENTER;
11 camera = cam;
12 return cam;
13}
15htree_draw_2d :: () {}
17htree_draw_screen :: (stat: *Statistics) {
18 // Can't afford to be sidetracked by this :(
19 label := "Not Implemented";
20 tw := MeasureText(to_c_string(label), 40);
21 DrawText(to_c_string(label),
22 cast(s32, CENTER.x - (tw / 2.0)),
23 cast(s32, CENTER.y - 100.0),
24 40, WHITE
25 );
26}
29#scope_file
32CENTER :: Vector2.{ SCREEN_WIDTH / 2.0, SCREEN_HEIGHT / 2.0 };
index : binary-tree
---