CoreLibModule.cs 202 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace MoonSharp.Interpreter.CoreLib
  6. {
  7. public enum CoreLibModule
  8. {
  9. TableIterators,
  10. Metatables,
  11. }
  12. }