Move input contracts to model
This commit is contained in:
8
engine/Age.Engine/Model/InputContracts.cs
Normal file
8
engine/Age.Engine/Model/InputContracts.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
namespace Age.Engine.Model;
|
||||
|
||||
public readonly record struct AdvAutoWaitState(
|
||||
bool Enabled, bool VoicePending, long PostVoiceDelayMs, long UnvoicedDelayMs);
|
||||
|
||||
/// <summary>AGERc command 10's synchronous full-width text edit request and result.</summary>
|
||||
public readonly record struct FullwidthTextEditRequest(string CurrentText, string InitialText);
|
||||
public readonly record struct FullwidthTextEditResult(bool Accepted, string Text);
|
||||
Reference in New Issue
Block a user