Files
BH3/Assets/Plugins/Assembly-CSharp-firstpass/LuaInterface/LuaHideAttribute.cs
2025-08-13 09:26:42 +08:00

10 lines
194 B
C#

using System;
namespace LuaInterface
{
[AttributeUsage(AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Field)]
public sealed class LuaHideAttribute : Attribute
{
}
}