diff options
Diffstat (limited to 'ROUNDS/Photon.Compression/KeyRate.cs')
-rw-r--r-- | ROUNDS/Photon.Compression/KeyRate.cs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/ROUNDS/Photon.Compression/KeyRate.cs b/ROUNDS/Photon.Compression/KeyRate.cs new file mode 100644 index 0000000..99b0891 --- /dev/null +++ b/ROUNDS/Photon.Compression/KeyRate.cs @@ -0,0 +1,13 @@ +namespace Photon.Compression; + +public enum KeyRate +{ + UseDefault = -1, + Never = 0, + Every = 1, + Every2nd = 2, + Every3rd = 3, + Every4th = 4, + Every5th = 5, + Every10th = 10 +} |