Robust Lite, also known as "Qt was too hard to distribute".

This commit is contained in:
Pieter-Jan Briers
2019-07-29 23:12:14 +02:00
parent 930cb61af8
commit ad695702ac
6 changed files with 539 additions and 1 deletions

View File

@@ -0,0 +1,19 @@
using System;
namespace SS14.Launcher
{
#pragma warning disable 649
[Serializable]
internal class JenkinsJobInfo
{
public JenkinsBuildRef LastSuccessfulBuild;
}
[Serializable]
internal class JenkinsBuildRef
{
public int Number;
public string Url;
}
#pragma warning restore 649
}