/BattleManager.cs Secret
Created
March 17, 2025 11:57
シンプルRPGチュートリアル第46回 戦闘に関する機能を管理するクラス
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections; | |
using UnityEngine; | |
namespace SimpleRpg | |
{ | |
/// <summary> | |
/// 戦闘に関する機能を管理するクラスです。 | |
/// </summary> | |
public class BattleManager : MonoBehaviour | |
{ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment