ObjectEventAttribute.cs 263 字节
Newer Older
1 2
using System;

T
tanghai 已提交
3
namespace Hotfix
4 5
{
	[AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
6
	public class ObjectEventAttribute: Attribute
7
	{
8
		public int ClassType;
9

10
		public ObjectEventAttribute(int classType)
11 12 13
		{
			this.ClassType = classType;
		}
14 15
	}
}