12 lines
275 B
C#
12 lines
275 B
C#
|
|
using System.ComponentModel;
|
||
|
|
using Gameplay.LegionBattle;
|
||
|
|
|
||
|
|
public partial class SROptions
|
||
|
|
{
|
||
|
|
[Category("军团战")]
|
||
|
|
[DisplayName("进入军团战")]
|
||
|
|
public void EnterLegionBattle()
|
||
|
|
{
|
||
|
|
LegionBattleManager.Instance.TryEnterLegionBattleByServer();
|
||
|
|
}
|
||
|
|
}
|