19 lines
336 B
C#
19 lines
336 B
C#
using Chickensoft.Introspection;
|
|
using Chickensoft.LogicBlocks;
|
|
|
|
namespace Zennysoft.Ma.Adapter;
|
|
|
|
public partial class GameLogic
|
|
{
|
|
public partial record State
|
|
{
|
|
[Meta]
|
|
public partial record Quit : State
|
|
{
|
|
public Quit()
|
|
{
|
|
this.OnEnter(() => Output(new Output.ShowLostScreen()));
|
|
}
|
|
}
|
|
}
|
|
} |