diff --git a/RetroFE/Source/CMakeLists.txt b/RetroFE/Source/CMakeLists.txt
index c1be59a..6c35c18 100644
--- a/RetroFE/Source/CMakeLists.txt
+++ b/RetroFE/Source/CMakeLists.txt
@@ -86,7 +86,7 @@ set(RETROFE_HEADERS
"${RETROFE_DIR}/Source/Execute/Launcher.h"
"${RETROFE_DIR}/Source/Graphics/Animate/Tween.h"
"${RETROFE_DIR}/Source/Graphics/Animate/TweenTypes.h"
- "${RETROFE_DIR}/Source/Graphics/Animate/TweenSet.h"
+ "${RETROFE_DIR}/Source/Graphics/Animate/TweenSets.h"
"${RETROFE_DIR}/Source/Graphics/ComponentItemBinding.h"
"${RETROFE_DIR}/Source/Graphics/Component/Container.h"
"${RETROFE_DIR}/Source/Graphics/Component/Component.h"
@@ -133,7 +133,7 @@ set(RETROFE_SOURCES
"${RETROFE_DIR}/Source/Graphics/Page.cpp"
"${RETROFE_DIR}/Source/Graphics/ViewInfo.cpp"
"${RETROFE_DIR}/Source/Graphics/Animate/Tween.cpp"
- "${RETROFE_DIR}/Source/Graphics/Animate/TweenSet.cpp"
+ "${RETROFE_DIR}/Source/Graphics/Animate/TweenSets.cpp"
"${RETROFE_DIR}/Source/Graphics/ComponentItemBindingBuilder.cpp"
"${RETROFE_DIR}/Source/Graphics/ComponentItemBinding.cpp"
"${RETROFE_DIR}/Source/Graphics/Component/Container.cpp"
diff --git a/RetroFE/Source/Graphics/Animate/TweenSet.cpp b/RetroFE/Source/Graphics/Animate/TweenSets.cpp
similarity index 78%
rename from RetroFE/Source/Graphics/Animate/TweenSet.cpp
rename to RetroFE/Source/Graphics/Animate/TweenSets.cpp
index 320b07a..a964e7c 100644
--- a/RetroFE/Source/Graphics/Animate/TweenSet.cpp
+++ b/RetroFE/Source/Graphics/Animate/TweenSets.cpp
@@ -14,14 +14,14 @@
* along with RetroFE. If not, see .
*/
-#include "TweenSet.h"
+#include "TweenSets.h"
-TweenSet::~TweenSet()
+TweenSets::~TweenSets()
{
DestroyTweens();
}
-void TweenSet::DestroyTweens()
+void TweenSets::DestroyTweens()
{
std::map >::iterator it = TweenMap.begin();
@@ -40,22 +40,22 @@ void TweenSet::DestroyTweens()
}
}
-TweenSet::TweenAttributes *TweenSet::GetTween(std::string tween)
+TweenSets::TweenAttributes *TweenSets::GetTween(std::string tween)
{
return GetTween(tween, -1);
}
-TweenSet::TweenAttributes *TweenSet::GetTween(std::string tween, int index)
+TweenSets::TweenAttributes *TweenSets::GetTween(std::string tween, int index)
{
return FindTween(TweenMap[tween], index);
}
-void TweenSet::SetTween(std::string tween, int index, TweenAttributes *set)
+void TweenSets::SetTween(std::string tween, int index, TweenAttributes *set)
{
TweenMap[tween][index] = set;
}
-TweenSet::TweenAttributes *TweenSet::FindTween(std::map &tweens, int index)
+TweenSets::TweenAttributes *TweenSets::FindTween(std::map &tweens, int index)
{
if(tweens.find(index) == tweens.end())
{
diff --git a/RetroFE/Source/Graphics/Animate/TweenSet.h b/RetroFE/Source/Graphics/Animate/TweenSets.h
similarity index 94%
rename from RetroFE/Source/Graphics/Animate/TweenSet.h
rename to RetroFE/Source/Graphics/Animate/TweenSets.h
index 707ba06..c28acc0 100644
--- a/RetroFE/Source/Graphics/Animate/TweenSet.h
+++ b/RetroFE/Source/Graphics/Animate/TweenSets.h
@@ -20,10 +20,10 @@
#include
#include