Files
taptap2024_GJ_chidouren/Assets/Scripts/Game/FsmNode/GameFight.cs
2024-10-16 00:03:41 +08:00

33 lines
898 B
C#

using System;
using System.Guide;
using Framework.Audio;
using Framework.FSMLite;
using Framework.UI;
using Game.Data;
using UnityEngine;
using Views;
namespace Game.FsmNode
{
public class GameFight : StateMachine<GameState>
{
// 基础战斗引导
// ReSharper disable once MemberCanBePrivate.Global
public const string FightGuideTable = "FightGuide";
// ReSharper disable once MemberCanBePrivate.Global
public const string GodEyeGuideTable = "GodEyeGuide";
public static string GroupName = typeof(GameFight).FullName;
protected override async void OnEnter (params object[] args)
{
AudioManager.Instance.PlayBGM (BgmAudio.FightingBgm);
var globalData = RoomManager.Instance.RoomGlobalData;
}
protected override void OnExit ()
{
}
}
}