本文整理汇总了C#中Springie.SpringNamespace.Spring.SayGame方法的典型用法代码示例。如果您正苦于以下问题:C# Spring.SayGame方法的具体用法?C# Spring.SayGame怎么用?C# Spring.SayGame使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Springie.SpringNamespace.Spring
的用法示例。
在下文中一共展示了Spring.SayGame方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: SayBattle
public static void SayBattle(TasClient tas, Spring spring, string text, bool ingame)
{
tas.Say(TasClient.SayPlace.Battle, "", text, true);
if (spring.IsRunning && ingame) spring.SayGame(text);
}
示例2: Respond
public static void Respond(TasClient tas, Spring spring, TasSayEventArgs e, string text)
{
TasClient.SayPlace p = TasClient.SayPlace.User;
bool emote = false;
if (e.Place == TasSayEventArgs.Places.Battle) {
p = TasClient.SayPlace.Battle;
emote = true;
}
if (e.Place == TasSayEventArgs.Places.Game && spring.IsRunning) spring.SayGame(text);
else tas.Say(p, e.UserName, text, emote);
}