LeviLamina
Loading...
Searching...
No Matches
ProductType.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5enum class ProductType : int {
6 Game = 0,
7 Application = 1,
8 Durable = 2,
9 Consumable = 3,
10 UnmanagedConsumable = 4,
11 Subscription = 5,
12 Unknown = 6,
13};