blob: 08199bfaaf3e9b52db54daad23734e2984abdf49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef _ASURA_ENGINE_RENDERTARGET_H_
#define _ASURA_ENGINE_RENDERTARGET_H_
#include <asura-base/Math/Vector2.hpp>
#include <asura-base/Math/Rect.hpp>
#include <asura-base/Scripting/Scripting.h>
#include "Texture.h"
#include "Color.h"
namespace_begin(AsuraEngine)
namespace_begin(Graphics)
class RenderTexture : public Texture
{
};
namespace_end
namespace_end
#endif
|