summaryrefslogtreecommitdiff
path: root/Valheim_r202102_v0.141.2/Valheim/assembly_utils/BitMaskAttribute.cs
blob: fce668bd7de5874caf778d61e158e7ece878fc2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System;
using UnityEngine;

public class BitMaskAttribute : PropertyAttribute
{
	public Type propType;

	public BitMaskAttribute(Type aType)
	{
		propType = aType;
	}
}