Worms4Editor/W4Gui/SaveType.cs

18 lines
278 B
C#
Raw Normal View History

2023-03-03 15:59:36 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace W4Gui
{
2023-03-05 00:01:54 +00:00
public enum SaveType : int
2023-03-03 15:59:36 +00:00
{
2023-03-05 23:38:01 +00:00
UNKNOWN = 0,
2023-03-05 00:01:54 +00:00
PC = 1,
PS2 = 2,
XBOX_US = 3,
XBOX_EU = 4
2023-03-03 15:59:36 +00:00
}
}