irrlicht/source/Irrlicht.NET/IShaderConstantSetCallback.h
bitplane 30b56d2ec5 Moved everything to /trunk
git-svn-id: http://svn.code.sf.net/p/irrlicht/code/trunk@643 dfc29bdd-3216-0410-991c-e03cc46cb475
2007-05-20 18:03:49 +00:00

28 lines
561 B
C++

#pragma once
using namespace System;
#pragma unmanaged
#include "..\\..\\include\\irrlicht.h"
#pragma managed
#include "IMaterialRenderer.h"
namespace Irrlicht
{
namespace Video
{
public __gc class IMaterialRendererServices;
public __gc __interface IShaderConstantSetCallBack
{
public:
/// <summary>
/// Called by the engine when the vertex and/or pixel shader constants for an
/// material renderer should be set.
/// </summary>
void OnSetConstants( Irrlicht::Video::IMaterialRendererServices* services );
};
}
}