YooAsset/Assets/YooAsset/Samples~/Space Shooter/GameScript/Runtime/BattleLogic/BattleEventDefine.cs

15 lines
239 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class BattleEventDefine
{
public class ScoreChange : IEventMessage
{
public int CurrentScores;
}
public class GameOver : IEventMessage
{
}
}