using ReactNative.Bridge; using System; using System.Collections.Generic; using Windows.ApplicationModel.Core; using Windows.UI.Core; namespace Gvr.RNGvr { /// /// A module that allows JS to share data. /// class RNGvrModule : NativeModuleBase { /// /// Instantiates the . /// internal RNGvrModule() { } /// /// The name of the native module. /// public override string Name { get { return "RNGvr"; } } } }