| 1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace MoonSharp.Interpreter.RuntimeAbstraction
- {
- class XamarinAndroidPlatform : MonoPlatform
- {
- public override string Name
- {
- get { return "xamarin-android"; }
- }
- public override CoreModules FilterSupportedCoreModules(CoreModules module)
- {
- return module & (~(CoreModules.IO | CoreModules.OS_System));
- }
- }
- }
|