summaryrefslogtreecommitdiff
path: root/Assembly_Firstpass/Steamworks/CallbackIdentityAttribute.cs
blob: 76fbb257deff62c869e0bd19c57d9120c0a5dac8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;

namespace Steamworks;

[AttributeUsage(AttributeTargets.Struct, AllowMultiple = false)]
internal class CallbackIdentityAttribute : Attribute
{
	public int Identity { get; set; }

	public CallbackIdentityAttribute(int callbackNum)
	{
		Identity = callbackNum;
	}
}