You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
|
1234567891011121314151617181920212223242526272829303132 |
- using System;
- using System.Runtime.InteropServices;
- using System.Collections.Generic;
- using System.Text;
-
- namespace Discord
- {
- public partial class StoreManager
- {
- public IEnumerable<Entitlement> GetEntitlements()
- {
- var count = CountEntitlements();
- var entitlements = new List<Entitlement>();
- for (var i = 0; i < count; i++)
- {
- entitlements.Add(GetEntitlementAt(i));
- }
- return entitlements;
- }
-
- public IEnumerable<Sku> GetSkus()
- {
- var count = CountSkus();
- var skus = new List<Sku>();
- for (var i = 0; i < count; i++)
- {
- skus.Add(GetSkuAt(i));
- }
- return skus;
- }
- }
- }
|