Demo
This commit is contained in:
ALEXTANG
2023-05-13 11:57:11 +08:00
parent fd7d8a798b
commit 7bf081269c
313 changed files with 135421 additions and 2 deletions

View File

@@ -0,0 +1,15 @@
using TEngine;
namespace GameLogic
{
public static class ActorEventDefine
{
public static readonly int ScoreChange = StringId.StringToHash("ActorEventDefine.ScoreChange");
public static readonly int GameOver = StringId.StringToHash("ActorEventDefine.GameOver");
public static readonly int EnemyDead = StringId.StringToHash("ActorEventDefine.EnemyDead");
public static readonly int PlayerDead = StringId.StringToHash("ActorEventDefine.PlayerDead");
public static readonly int AsteroidExplosion = StringId.StringToHash("ActorEventDefine.AsteroidExplosion");
public static readonly int EnemyFireBullet = StringId.StringToHash("ActorEventDefine.EnemyFireBullet");
public static readonly int PlayerFireBullet = StringId.StringToHash("ActorEventDefine.PlayerFireBullet");
}
}