| 123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace MoonSharp.Interpreter.RuntimeAbstraction
- {
- class UnityWebPlatform : UnityPlatform
- {
- public override string Name
- {
- get { return "UnityWeb"; }
- }
- public override string GetEnvironmentVariable(string variable)
- {
- return null;
- }
- }
- }
|