LuaHideAttribute.cs 318 B

1234567891011
  1. using System;
  2. namespace LuaInterface
  3. {
  4. /// <summary>
  5. /// Marks a method, field or property to be hidden from Lua auto-completion
  6. /// </summary>
  7. [AttributeUsage(AttributeTargets.Method | AttributeTargets.Field | AttributeTargets.Property)]
  8. public sealed class LuaHideAttribute : Attribute
  9. {}
  10. }