summaryrefslogtreecommitdiff
path: root/Source/Asura.Engine/Graphics/SpriteBatch.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Asura.Engine/Graphics/SpriteBatch.h')
-rw-r--r--Source/Asura.Engine/Graphics/SpriteBatch.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/Source/Asura.Engine/Graphics/SpriteBatch.h b/Source/Asura.Engine/Graphics/SpriteBatch.h
index 17d5e75..a571775 100644
--- a/Source/Asura.Engine/Graphics/SpriteBatch.h
+++ b/Source/Asura.Engine/Graphics/SpriteBatch.h
@@ -1,6 +1,8 @@
#ifndef __ASURA_ENGINE_SPRITE_BATCH_H__
#define __ASURA_ENGINE_SPRITE_BATCH_H__
+#include "Object.h"
+
namespace AsuraEngine
{
namespace Graphics
@@ -9,8 +11,11 @@ namespace AsuraEngine
///
/// Sprite batchȾͼƬĵطϵͳ
///
- class SpriteBatch
+ class SpriteBatch : virtual public Object
{
+ public:
+
+ SpriteBatch();
};