blob: 96309cde665523e4f41af92fd30427fb51b598bc (
plain)
1
2
3
4
5
6
7
|
using System;
namespace StardewModdingAPI.Events
{
/// <summary>Event arguments for an <see cref="IGameLoopEvents.ReturnedToTitle"/> event.</summary>
public class ReturnedToTitleEventArgs : EventArgs { }
}
|