using System; namespace Omegasis.SaveAnywhere.API { /// /// Interface for the Save Anywhere API /// Other mods can use this interface to get the /// API from the SMAPI helper /// public interface ISaveAnywhereAPI { /********* ** Events *********/ /// /// Event that fires before game save /// event EventHandler BeforeSave; /// /// Event that fires after game save /// event EventHandler AfterSave; /// /// Event that fires after game load /// event EventHandler AfterLoad; } }