8 lines
162 B
C#
8 lines
162 B
C#
namespace Aiwaz.Contracts
|
|
{
|
|
public interface IRenderTargetTexture
|
|
{
|
|
void Resize(int argWidth, int argHeight);
|
|
ITexture Texture { get; }
|
|
};
|
|
} |