summaryrefslogtreecommitdiff
path: root/Source/Asura.Engine/Graphics/SpriteBatch.h
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2019-03-12 00:39:26 +0800
committerchai <chaifix@163.com>2019-03-12 00:39:26 +0800
commit70b82d1981c0de3c7b77670ff8abcfeb26815142 (patch)
treef69c05bcd204cc3f9bf745be37a2ba5911e52436 /Source/Asura.Engine/Graphics/SpriteBatch.h
parentc19a282e10f51ddd50d198b903f8fbd5a2238b62 (diff)
*misc
Diffstat (limited to 'Source/Asura.Engine/Graphics/SpriteBatch.h')
-rw-r--r--Source/Asura.Engine/Graphics/SpriteBatch.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/Asura.Engine/Graphics/SpriteBatch.h b/Source/Asura.Engine/Graphics/SpriteBatch.h
index a571775..353bf77 100644
--- a/Source/Asura.Engine/Graphics/SpriteBatch.h
+++ b/Source/Asura.Engine/Graphics/SpriteBatch.h
@@ -1,7 +1,7 @@
#ifndef __ASURA_ENGINE_SPRITE_BATCH_H__
#define __ASURA_ENGINE_SPRITE_BATCH_H__
-#include "Object.h"
+#include "Scripting/Portable.h"
namespace AsuraEngine
{
@@ -11,12 +11,14 @@ namespace AsuraEngine
///
/// Sprite batchȾͼƬĵطϵͳ
///
- class SpriteBatch : virtual public Object
+ class SpriteBatch ASURA_FINAL : public Scripting::Portable
{
public:
SpriteBatch();
+ ~SpriteBatch();
+
};
}