Example #1
0
        public bool IsHigherThan(string version)
        {
            var compared = new PatchVersion(version);

            return(PatchVersion.GameUpdate > compared.GameUpdate ||
                   PatchVersion.PatchUpdate > compared.PatchUpdate);
        }
Example #2
0
 public Patch(PatchContentType contentType)
 {
     ContentType  = contentType;
     PatchVersion = new PatchVersion("null_U1_v100");
 }