Adds a bunch more move scripts
This commit is contained in:
17
PkmnLib.Dynamic/Events/DialogEvent.cs
Normal file
17
PkmnLib.Dynamic/Events/DialogEvent.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
namespace PkmnLib.Dynamic.Events;
|
||||
|
||||
public class DialogEvent : IEventData
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public EventBatchId BatchId { get; init; } = new();
|
||||
|
||||
public DialogEvent(string message, Dictionary<string, object>? parameters = null)
|
||||
{
|
||||
Message = message;
|
||||
Parameters = parameters;
|
||||
}
|
||||
|
||||
public string Message { get; set; }
|
||||
|
||||
public Dictionary<string, object>? Parameters { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user