summaryrefslogtreecommitdiff
path: root/src/ecs/components.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/ecs/components.zig')
-rw-r--r--src/ecs/components.zig4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/ecs/components.zig b/src/ecs/components.zig
index 5c35cbf..1309e70 100644
--- a/src/ecs/components.zig
+++ b/src/ecs/components.zig
@@ -1,8 +1,6 @@
const std = @import("std");
const Allocator = std.mem.Allocator;
-const COMPONENT_NUMBER = 2;
-
pub const Position = packed struct {
x: f32,
y: f32,
@@ -13,6 +11,4 @@ pub const Position = packed struct {
pub const Speed = packed struct {
speed: f32,
-
- pub const id: usize = 1;
};