Files
WickedEngine/WickedEngine/Texture_BindLua.h
T
2015-08-06 23:51:45 +02:00

22 lines
438 B
C++

#pragma once
#include "wiLua.h"
#include "wiLuna.h"
#include "wiRenderer.h"
class Texture_BindLua
{
private:
wiRenderer::TextureView texture;
public:
static const char className[];
static Luna<Texture_BindLua>::FunctionType methods[];
static Luna<Texture_BindLua>::PropertyType properties[];
Texture_BindLua(wiRenderer::TextureView texture = nullptr);
Texture_BindLua(lua_State *L);
~Texture_BindLua();
static void Bind();
};