diff options
| author | Feoramund <161657516+Feoramund@users.noreply.github.com> | 2024-04-17 18:23:20 -0400 |
|---|---|---|
| committer | Feoramund <161657516+Feoramund@users.noreply.github.com> | 2024-04-17 18:23:20 -0400 |
| commit | 88ec53bed3a487a26d747d84015ae2bd0ecafd4a (patch) | |
| tree | 93fcb4e79a889ba5c8dbeef34105367f382c22cb /src/common | |
| parent | 81c84f9683a40d60c0d1ae347c175d9205d186f8 (diff) | |
Move packages to new base collection
Diffstat (limited to 'src/common')
| -rw-r--r-- | src/common/allocator.odin | 3 |
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,
|