mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-02-24 17:51:08 +00:00
17 lines
415 B
C#
17 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);
|
|
}
|
|
}
|
|
}
|