You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
547 B
20 lines
547 B
10 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
|
||
|
namespace Aerostats
|
||
|
{
|
||
|
static class Util
|
||
|
{
|
||
|
private static Dictionary<string, ScreenMessage> messages = new Dictionary<string, ScreenMessage>();
|
||
|
|
||
|
public static void PostSingleScreenMessage(string id, string message)
|
||
|
{
|
||
|
if (messages.ContainsKey(id))
|
||
|
ScreenMessages.RemoveMessage(messages[id]);
|
||
|
messages[id] = ScreenMessages.PostScreenMessage(message);
|
||
|
}
|
||
|
}
|
||
|
}
|