16 lines
290 B
C#
16 lines
290 B
C#
using System;
|
|
|
|
namespace Steamworks
|
|
{
|
|
[AttributeUsage(AttributeTargets.Struct, AllowMultiple = false)]
|
|
internal class CallbackIdentityAttribute : Attribute
|
|
{
|
|
public int Identity { get; set; }
|
|
|
|
public CallbackIdentityAttribute(int callbackNum)
|
|
{
|
|
Identity = callbackNum;
|
|
}
|
|
}
|
|
}
|