Files
bluflame/aiwaz/Aiwaz.Contracts/IRenderTargetTexture.cs
2026-04-18 22:31:51 +02:00

8 lines
162 B
C#

namespace Aiwaz.Contracts
{
public interface IRenderTargetTexture
{
void Resize(int argWidth, int argHeight);
ITexture Texture { get; }
};
}