OpenSim.Region.ScriptEngine.../src/LUA/LuaHideAttribute.cs

12 lines
314 B
C#
Raw Normal View History

2020-08-06 23:19:35 +00:00
using System;
namespace NLua
{
/// <summary>
/// Marks a method, field or property to be hidden from Lua auto-completion
/// </summary>
[AttributeUsage(AttributeTargets.Method | AttributeTargets.Field | AttributeTargets.Property)]
public sealed class LuaHideAttribute : Attribute
{
}
}