r2mods/ilspy_dump/ror2_csproj/RoR2/AssetCheckAttribute.cs

17 lines
298 B
C#
Raw Normal View History

2024-10-04 07:26:37 +00:00
using System;
using JetBrains.Annotations;
namespace RoR2;
[MeansImplicitUse]
[AttributeUsage(AttributeTargets.Method, AllowMultiple = true)]
public class AssetCheckAttribute : Attribute
{
public Type assetType;
public AssetCheckAttribute(Type assetType)
{
this.assetType = assetType;
}
}