From b6c8d9fdad9f82864e6aab6269a232eafdf2df09 Mon Sep 17 00:00:00 2001 From: TurtleP Date: Tue, 26 Mar 2024 20:43:05 -0400 Subject: [PATCH] WHY WAS THIS ALL LOWERCASE? --- include/common/{color.hpp => Color.hpp} | 0 include/common/{console.hpp => Console.hpp} | 0 include/common/{data.hpp => Data.hpp} | 0 include/common/{exception.hpp => Exception.hpp} | 0 include/common/{message.hpp => Message.hpp} | 0 include/common/{module.hpp => Module.hpp} | 0 include/common/{object.hpp => Object.hpp} | 0 include/common/{optional.hpp => Optional.hpp} | 0 include/common/{variant.hpp => Variant.hpp} | 0 include/modules/data/{wrap_data.hpp => wrap_Data.hpp} | 0 include/modules/event/{event.hpp => Event.hpp} | 0 include/modules/event/{wrap_event.hpp => wrap_Event.hpp} | 0 .../modules/filesystem/physfs/{filesystem.hpp => Filesystem.hpp} | 0 include/modules/timer/{timer.tcc => Timer.tcc} | 0 include/modules/timer/{wrap_timer.hpp => wrap_Timer.hpp} | 0 source/common/{data.cpp => Data.cpp} | 0 source/common/{module.cpp => Module.cpp} | 0 source/common/{object.cpp => Object.cpp} | 0 source/common/{variant.cpp => Variant.cpp} | 0 source/modules/data/{wrap_data.cpp => wrap_Data.cpp} | 0 source/modules/event/{event.cpp => Event.cpp} | 0 source/modules/event/{wrap_event.cpp => wrap_Event.cpp} | 0 .../modules/filesystem/physfs/{filesystem.cpp => Filesystem.cpp} | 0 .../filesystem/{wrap_filesystem.cpp => wrap_Filesystem.cpp} | 0 source/modules/timer/{wrap_timer.cpp => wrap_Timer.cpp} | 0 25 files changed, 0 insertions(+), 0 deletions(-) rename include/common/{color.hpp => Color.hpp} (100%) rename include/common/{console.hpp => Console.hpp} (100%) rename include/common/{data.hpp => Data.hpp} (100%) rename include/common/{exception.hpp => Exception.hpp} (100%) rename include/common/{message.hpp => Message.hpp} (100%) rename include/common/{module.hpp => Module.hpp} (100%) rename include/common/{object.hpp => Object.hpp} (100%) rename include/common/{optional.hpp => Optional.hpp} (100%) rename include/common/{variant.hpp => Variant.hpp} (100%) rename include/modules/data/{wrap_data.hpp => wrap_Data.hpp} (100%) rename include/modules/event/{event.hpp => Event.hpp} (100%) rename include/modules/event/{wrap_event.hpp => wrap_Event.hpp} (100%) rename include/modules/filesystem/physfs/{filesystem.hpp => Filesystem.hpp} (100%) rename include/modules/timer/{timer.tcc => Timer.tcc} (100%) rename include/modules/timer/{wrap_timer.hpp => wrap_Timer.hpp} (100%) rename source/common/{data.cpp => Data.cpp} (100%) rename source/common/{module.cpp => Module.cpp} (100%) rename source/common/{object.cpp => Object.cpp} (100%) rename source/common/{variant.cpp => Variant.cpp} (100%) rename source/modules/data/{wrap_data.cpp => wrap_Data.cpp} (100%) rename source/modules/event/{event.cpp => Event.cpp} (100%) rename source/modules/event/{wrap_event.cpp => wrap_Event.cpp} (100%) rename source/modules/filesystem/physfs/{filesystem.cpp => Filesystem.cpp} (100%) rename source/modules/filesystem/{wrap_filesystem.cpp => wrap_Filesystem.cpp} (100%) rename source/modules/timer/{wrap_timer.cpp => wrap_Timer.cpp} (100%) diff --git a/include/common/color.hpp b/include/common/Color.hpp similarity index 100% rename from include/common/color.hpp rename to include/common/Color.hpp diff --git a/include/common/console.hpp b/include/common/Console.hpp similarity index 100% rename from include/common/console.hpp rename to include/common/Console.hpp diff --git a/include/common/data.hpp b/include/common/Data.hpp similarity index 100% rename from include/common/data.hpp rename to include/common/Data.hpp diff --git a/include/common/exception.hpp b/include/common/Exception.hpp similarity index 100% rename from include/common/exception.hpp rename to include/common/Exception.hpp diff --git a/include/common/message.hpp b/include/common/Message.hpp similarity index 100% rename from include/common/message.hpp rename to include/common/Message.hpp diff --git a/include/common/module.hpp b/include/common/Module.hpp similarity index 100% rename from include/common/module.hpp rename to include/common/Module.hpp diff --git a/include/common/object.hpp b/include/common/Object.hpp similarity index 100% rename from include/common/object.hpp rename to include/common/Object.hpp diff --git a/include/common/optional.hpp b/include/common/Optional.hpp similarity index 100% rename from include/common/optional.hpp rename to include/common/Optional.hpp diff --git a/include/common/variant.hpp b/include/common/Variant.hpp similarity index 100% rename from include/common/variant.hpp rename to include/common/Variant.hpp diff --git a/include/modules/data/wrap_data.hpp b/include/modules/data/wrap_Data.hpp similarity index 100% rename from include/modules/data/wrap_data.hpp rename to include/modules/data/wrap_Data.hpp diff --git a/include/modules/event/event.hpp b/include/modules/event/Event.hpp similarity index 100% rename from include/modules/event/event.hpp rename to include/modules/event/Event.hpp diff --git a/include/modules/event/wrap_event.hpp b/include/modules/event/wrap_Event.hpp similarity index 100% rename from include/modules/event/wrap_event.hpp rename to include/modules/event/wrap_Event.hpp diff --git a/include/modules/filesystem/physfs/filesystem.hpp b/include/modules/filesystem/physfs/Filesystem.hpp similarity index 100% rename from include/modules/filesystem/physfs/filesystem.hpp rename to include/modules/filesystem/physfs/Filesystem.hpp diff --git a/include/modules/timer/timer.tcc b/include/modules/timer/Timer.tcc similarity index 100% rename from include/modules/timer/timer.tcc rename to include/modules/timer/Timer.tcc diff --git a/include/modules/timer/wrap_timer.hpp b/include/modules/timer/wrap_Timer.hpp similarity index 100% rename from include/modules/timer/wrap_timer.hpp rename to include/modules/timer/wrap_Timer.hpp diff --git a/source/common/data.cpp b/source/common/Data.cpp similarity index 100% rename from source/common/data.cpp rename to source/common/Data.cpp diff --git a/source/common/module.cpp b/source/common/Module.cpp similarity index 100% rename from source/common/module.cpp rename to source/common/Module.cpp diff --git a/source/common/object.cpp b/source/common/Object.cpp similarity index 100% rename from source/common/object.cpp rename to source/common/Object.cpp diff --git a/source/common/variant.cpp b/source/common/Variant.cpp similarity index 100% rename from source/common/variant.cpp rename to source/common/Variant.cpp diff --git a/source/modules/data/wrap_data.cpp b/source/modules/data/wrap_Data.cpp similarity index 100% rename from source/modules/data/wrap_data.cpp rename to source/modules/data/wrap_Data.cpp diff --git a/source/modules/event/event.cpp b/source/modules/event/Event.cpp similarity index 100% rename from source/modules/event/event.cpp rename to source/modules/event/Event.cpp diff --git a/source/modules/event/wrap_event.cpp b/source/modules/event/wrap_Event.cpp similarity index 100% rename from source/modules/event/wrap_event.cpp rename to source/modules/event/wrap_Event.cpp diff --git a/source/modules/filesystem/physfs/filesystem.cpp b/source/modules/filesystem/physfs/Filesystem.cpp similarity index 100% rename from source/modules/filesystem/physfs/filesystem.cpp rename to source/modules/filesystem/physfs/Filesystem.cpp diff --git a/source/modules/filesystem/wrap_filesystem.cpp b/source/modules/filesystem/wrap_Filesystem.cpp similarity index 100% rename from source/modules/filesystem/wrap_filesystem.cpp rename to source/modules/filesystem/wrap_Filesystem.cpp diff --git a/source/modules/timer/wrap_timer.cpp b/source/modules/timer/wrap_Timer.cpp similarity index 100% rename from source/modules/timer/wrap_timer.cpp rename to source/modules/timer/wrap_Timer.cpp