mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
Experimental GPU overclock
This commit is contained in:
16
app/NvAPIWrapper/Native/Attributes/FunctionIdAttribute.cs
Normal file
16
app/NvAPIWrapper/Native/Attributes/FunctionIdAttribute.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using NvAPIWrapper.Native.Helpers;
|
||||
|
||||
namespace NvAPIWrapper.Native.Attributes
|
||||
{
|
||||
[AttributeUsage(AttributeTargets.Delegate)]
|
||||
internal class FunctionIdAttribute : Attribute
|
||||
{
|
||||
public FunctionIdAttribute(FunctionId functionId)
|
||||
{
|
||||
FunctionId = functionId;
|
||||
}
|
||||
|
||||
public FunctionId FunctionId { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user