Files
OpenRA/OpenRa.FileFormats/ProtocolVersion.cs
2010-01-25 18:29:56 +13:00

14 lines
302 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace OpenRa.FileFormats
{
public static class ProtocolVersion
{
// you *must* increment this whenever you make an incompatible protocol change
public static readonly int Version = 1;
}
}