25 lines
420 B
C#
25 lines
420 B
C#
using Chickensoft.Introspection;
|
|
using Chickensoft.LogicBlocks;
|
|
using Zennysoft.Game.Abstractions;
|
|
|
|
namespace Zennysoft.Ma.Adapter;
|
|
|
|
public partial class AppLogic
|
|
{
|
|
public partial record State
|
|
{
|
|
[Meta]
|
|
public partial record EnemyViewer : State
|
|
{
|
|
public EnemyViewer()
|
|
{
|
|
|
|
this.OnEnter(() =>
|
|
{
|
|
Output(new Output.EnemyViewerOpened());
|
|
});
|
|
}
|
|
}
|
|
}
|
|
}
|