OpenRA.Order.Chat C# (CSharp) Method

Chat() public static method

public static Chat ( bool team, string text ) : Order
team bool
text string
return Order
        public static Order Chat(bool team, string text)
        {
            return new Order(team ? "TeamChat" : "Chat", null, false) { IsImmediate = true, TargetString = text };
        }