CustomAttribute.lua.txt 567 B

12345678910111213141516171819202122
  1. ---
  2. --- Generated by EmmyLua(https://github.com/EmmyLua)
  3. --- Created by Cal.
  4. --- DateTime: 2021/4/30 23:41
  5. ---
  6. local System = System
  7. System.namespace("System", function (namespace)
  8. namespace.class("DebuggerHiddenAttribute", function (namespace)
  9. local __ctor__
  10. __ctor__ = function (this)
  11. System.Attribute.__ctor__(this)
  12. end
  13. return {
  14. base = function (out)
  15. return {
  16. System.Attribute
  17. }
  18. end,
  19. __ctor__ = __ctor__
  20. }
  21. end)
  22. end)