Files
OpenRA/OpenRA.Mods.RA/Widgets/GameInitInfoWidget.cs
Paul Chote 7dad013b31 Fix cnc.
2011-01-27 20:50:01 +13:00

22 lines
558 B
C#
Executable File

#region Copyright & License Information
/*
* Copyright 2007-2010 The OpenRA Developers (see AUTHORS)
* This file is part of OpenRA, which is free software. It is made
* available to you under the terms of the GNU General Public License
* as published by the Free Software Foundation. For more information,
* see LICENSE.
*/
#endregion
using OpenRA.Widgets;
namespace OpenRA.Mods.RA.Widgets
{
class GameInitInfoWidget : Widget
{
public string TestFile;
public string GameTitle;
public override void DrawInner() {}
}
}