1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-02-28 18:14:29 -06:00

12 lines
232 B
C#
Raw Normal View History

namespace Ryujinx.Graphics.Gal.Shader
{
class ShaderIrMetaTex : ShaderIrMeta
{
public int Elem { get; private set; }
public ShaderIrMetaTex(int Elem)
{
this.Elem = Elem;
}
}
}