Use OS integer value for XML export to reduce file size

This commit is contained in:
Michael J. Seiferling
2019-03-10 11:05:17 -06:00
parent 029e8d482b
commit 80172aaa31
+3
View File
@@ -1,4 +1,5 @@
Imports System.Text.RegularExpressions Imports System.Text.RegularExpressions
Imports System.Xml.Serialization
<Serializable()> <Serializable()>
Public Class clsGame Public Class clsGame
@@ -40,7 +41,9 @@ Public Class clsGame
End Enum End Enum
Public Enum eOS Public Enum eOS
<XmlEnum("1")>
Windows = 1 Windows = 1
<XmlEnum("2")>
Linux = 2 Linux = 2
End Enum End Enum