summaryrefslogtreecommitdiff
path: root/Source/Asura.Engine/Graphics/Animation.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Asura.Engine/Graphics/Animation.cpp')
-rw-r--r--Source/Asura.Engine/Graphics/Animation.cpp21
1 files changed, 0 insertions, 21 deletions
diff --git a/Source/Asura.Engine/Graphics/Animation.cpp b/Source/Asura.Engine/Graphics/Animation.cpp
deleted file mode 100644
index 47643aa..0000000
--- a/Source/Asura.Engine/Graphics/Animation.cpp
+++ /dev/null
@@ -1,21 +0,0 @@
-#include "Animation.h"
-
-namespace AsuraEngine
-{
- namespace Graphics
- {
-
- void Animation::OnEnable()
- {
- mSpriteRenderer = mGameObject->GetComponent<SpriteRenderer*>();
- }
-
- void Animation::OnUpdate(uint32 milliseconds)
- {
- if (!mSpriteRenderer)
- return;
- mSpriteRenderer->SetSprite(NULL);
- }
-
- }
-}