mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-01 03:32:38 +00:00
15 lines
161 B
C#
15 lines
161 B
C#
|
using System;
|
|||
|
|
|||
|
namespace QSB.Patches;
|
|||
|
|
|||
|
[Flags]
|
|||
|
public enum PatchVendor
|
|||
|
{
|
|||
|
None = 0,
|
|||
|
Epic = 1,
|
|||
|
Steam = 2,
|
|||
|
Gamepass = 4,
|
|||
|
All = Epic | Steam | Gamepass
|
|||
|
}
|
|||
|
|