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

14 lines
129 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,
2022-07-22 17:47:09 +00:00
Gamepass = 4
2022-07-22 09:50:59 +00:00
}