XamarinAndroidPlatform.cs 421 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace MoonSharp.Interpreter.RuntimeAbstraction
  6. {
  7. class XamarinAndroidPlatform : MonoPlatform
  8. {
  9. public override string Name
  10. {
  11. get { return "xamarin-android"; }
  12. }
  13. public override CoreModules FilterSupportedCoreModules(CoreModules module)
  14. {
  15. return module & (~(CoreModules.IO | CoreModules.OS_System));
  16. }
  17. }
  18. }