quantum-space-buddies/QSB/Patches/PatchVendor.cs

15 lines
161 B
C#
Raw Normal View History

2022-07-22 09:50:59 +00:00
using System;
namespace QSB.Patches;
[Flags]
public enum PatchVendor
{
None = 0,
Epic = 1,
Steam = 2,
Gamepass = 4,
All = Epic | Steam | Gamepass
}