This commit is contained in:
18
PkmnLib.Dynamic/Events/WeatherChangeEvent.cs
Normal file
18
PkmnLib.Dynamic/Events/WeatherChangeEvent.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using PkmnLib.Static.Utils;
|
||||
|
||||
namespace PkmnLib.Dynamic.Events;
|
||||
|
||||
public class WeatherChangeEvent : IEventData
|
||||
{
|
||||
public StringKey? OldWeather { get; }
|
||||
public StringKey? NewWeather { get; }
|
||||
|
||||
public WeatherChangeEvent(StringKey? oldWeather, StringKey? newWeather)
|
||||
{
|
||||
OldWeather = oldWeather;
|
||||
NewWeather = newWeather;
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
public EventBatchId BatchId { get; init; }
|
||||
}
|
||||
Reference in New Issue
Block a user