aboutsummaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorFeoramund <161657516+Feoramund@users.noreply.github.com>2024-04-17 18:23:20 -0400
committerFeoramund <161657516+Feoramund@users.noreply.github.com>2024-04-17 18:23:20 -0400
commit88ec53bed3a487a26d747d84015ae2bd0ecafd4a (patch)
tree93fcb4e79a889ba5c8dbeef34105367f382c22cb /src/common
parent81c84f9683a40d60c0d1ae347c175d9205d186f8 (diff)
Move packages to new base collection
Diffstat (limited to 'src/common')
-rw-r--r--src/common/allocator.odin3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/allocator.odin b/src/common/allocator.odin
index 21499a1..452f729 100644
--- a/src/common/allocator.odin
+++ b/src/common/allocator.odin
@@ -1,7 +1,8 @@
package common
+import "base:runtime"
+
import "core:mem"
-import "core:runtime"
Scratch_Allocator :: struct {
data: []byte,