Exemple #1
0
 public void Set(QueryOwnershipOptions other)
 {
     if (other != null)
     {
         m_ApiVersion     = EcomInterface.QueryownershipApiLatest;
         LocalUserId      = other.LocalUserId;
         CatalogItemIds   = other.CatalogItemIds;
         CatalogNamespace = other.CatalogNamespace;
     }
 }
Exemple #2
0
        private static void EOSQueryOwnership()
        {
            Program.Log("[EOS] querying DLC ownership");
            _ecomInterface = EpicPlatformManager.PlatformInterface.GetEcomInterface();
            var queryOwnershipOptions = new QueryOwnershipOptions
            {
                LocalUserId    = EpicPlatformManager.LocalUserId,
                CatalogItemIds = new[] { _eosDlcItemID }
            };

            _ecomInterface.QueryOwnership(queryOwnershipOptions, null, OnEOSQueryOwnershipComplete);
        }