Files
OpenRA/LuaInterface/LuaHideAttribute.cs
2013-11-18 20:55:58 +13:00

12 lines
318 B
C#

using System;
namespace LuaInterface
{
/// <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
{}
}