remove old references to entity

This commit is contained in:
jjanzen 2025-01-21 19:22:09 -06:00
parent 8a20d05a7a
commit 287a3b81f2
2 changed files with 1 additions and 4 deletions

View file

@ -1,5 +1,4 @@
const std = @import("std");
const Entity = @import("../ecs/entity.zig").Entity;
const Action = @import("../actions.zig").Action;
const ncurses = @cImport({
@cInclude("ncurses.h");
@ -124,7 +123,7 @@ pub const Display = struct {
_ = ncurses.wrefresh(self.msgs);
}
pub fn displayStatus(self: *Display, entity: *const Entity) void {
pub fn displayStatus(self: *Display) void {
for (1..STATUS_PANEL_HEIGHT - 1) |i| {
for (1..STATUS_PANEL_WIDTH - 1) |j| {
const i_32 = @as(i32, @intCast(i));
@ -133,7 +132,6 @@ pub const Display = struct {
}
}
_ = entity;
_ = ncurses.wrefresh(self.stat);
}

View file

@ -1,5 +1,4 @@
const std = @import("std");
const Entity = @import("ecs/entity.zig").Entity;
const Display = @import("frontend/ncurses.zig").Display;
const Action = @import("actions.zig").Action;