12 lines
321 B
C#
12 lines
321 B
C#
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
|
|
{}
|
|
}
|