diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2025-02-07 20:39:58 +0100 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2025-02-07 20:39:58 +0100 |
| commit | dae5bc02b1c934075e95694953b4330676e21611 (patch) | |
| tree | faa1a80849e5642d0b4bd8b4a91331b1da5b75bf /src/estd/root.zig | |
| parent | fef523a8d7c87f272de18c8abd57e0cc53e2ef40 (diff) | |
estd: add graphics module
Diffstat (limited to 'src/estd/root.zig')
| -rw-r--r-- | src/estd/root.zig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/estd/root.zig b/src/estd/root.zig index 00c2631..5ff292e 100644 --- a/src/estd/root.zig +++ b/src/estd/root.zig @@ -2,6 +2,7 @@ const std = @import("std"); pub const cursor = @import("cursor.zig"); pub const parser = @import("parser/root.zig"); +pub const graphics = @import("graphics/root.zig"); test { std.testing.refAllDecls(@This()); |