mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2026-04-22 02:41:56 +00:00
16 lines
415 B
C#
16 lines
415 B
C#
|
|
using System;
|
|
|
|
namespace Ryujinx.Graphics.RenderDocApi
|
|
{
|
|
[AttributeUsage(AttributeTargets.Method | AttributeTargets.Property)]
|
|
public sealed class RenderDocApiVersionAttribute : Attribute
|
|
{
|
|
public Version MinVersion { get; }
|
|
|
|
public RenderDocApiVersionAttribute(int major, int minor, int patch = 0)
|
|
{
|
|
MinVersion = new Version(major, minor, patch);
|
|
}
|
|
}
|
|
}
|