UnityWebPlatform.cs 350 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace MoonSharp.Interpreter.RuntimeAbstraction
  6. {
  7. class UnityWebPlatform : UnityPlatform
  8. {
  9. public override string Name
  10. {
  11. get { return "UnityWeb"; }
  12. }
  13. public override string GetEnvironmentVariable(string variable)
  14. {
  15. return null;
  16. }
  17. }
  18. }