Switch to observer ui on victory/defeat (Feature #1002).

This commit is contained in:
Paul Chote
2011-07-16 21:02:15 +12:00
parent 8f62ce9b25
commit b8ba48ee67
5 changed files with 116 additions and 106 deletions

View File

@@ -0,0 +1,21 @@
#region Copyright & License Information
/*
* Copyright 2007-2011 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 COPYING.
*/
#endregion
using System;
using OpenRA.Widgets;
namespace OpenRA.Mods.Cnc.Widgets
{
public class LogicTickerWidget : Widget
{
public Action OnTick = () => {};
public override void Tick() { OnTick(); }
}
}