From 797cfeca05fd6c1eb389e98968cb71f1fe3e9316 Mon Sep 17 00:00:00 2001 From: Warwick Date: Thu, 17 Aug 2023 15:48:09 +0100 Subject: [PATCH] Standardize todo syntax throughout code. --- urchin-util/include/world_structures.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/urchin-util/include/world_structures.h b/urchin-util/include/world_structures.h index 57727db..86a5979 100644 --- a/urchin-util/include/world_structures.h +++ b/urchin-util/include/world_structures.h @@ -2,7 +2,7 @@ // Make world structures accessible to both server and client // Define moveable directions -// TODO eventually move over to a hash table so players can move through +// TODO: eventually move over to a hash table so players can move through // exits defined in the room description like hatch, crack, door, etc. typedef enum { NORTH, EAST, SOUTH, WEST } move_direction;