Logo
DrawInfo.h
1#pragma once
2
3#include "Types.h"
4#include "base/ResourceServer.h"
5
6namespace XXSharpKmyGfx{
7
8 ref class Render;
9
10 private ref class Drawable
11 {
12 public:
13 System::Runtime::InteropServices::GCHandle handle;
14 Drawable();
15 void Release();
16 virtual void draw(Render ^scn){}
17 };
18}