From 641145c5b476e3e73bcc1f0141352a61848b5315 Mon Sep 17 00:00:00 2001 From: Kayne Ruse Date: Fri, 8 May 2026 11:27:11 +1000 Subject: [PATCH] Renamed files 'monster' -> 'actor' --- Toy | 2 +- source/{monster.c => actor.c} | 2 +- source/{monster.h => actor.h} | 0 source/main.c | 2 +- 4 files changed, 3 insertions(+), 3 deletions(-) rename source/{monster.c => actor.c} (99%) rename source/{monster.h => actor.h} (100%) diff --git a/Toy b/Toy index 185f389..be84a8d 160000 --- a/Toy +++ b/Toy @@ -1 +1 @@ -Subproject commit 185f3896c52c781bcca6d22205f4be50eeaeff7f +Subproject commit be84a8dfe2eb80c585ab496c12ee8e0ae30725f5 diff --git a/source/monster.c b/source/actor.c similarity index 99% rename from source/monster.c rename to source/actor.c index 23bce6e..f34477a 100644 --- a/source/monster.c +++ b/source/actor.c @@ -1,4 +1,4 @@ -#include "monster.h" +#include "actor.h" #include "toy_console_colors.h" #include "toy_table.h" diff --git a/source/monster.h b/source/actor.h similarity index 100% rename from source/monster.h rename to source/actor.h diff --git a/source/main.c b/source/main.c index 12321c0..689518e 100644 --- a/source/main.c +++ b/source/main.c @@ -8,7 +8,7 @@ #include "toy_vm.h" #include "toy_attributes.h" -#include "monster.h" +#include "actor.h" #include #include