bloxstrap/Bloxstrap/Models/SettingTasks/ISettingTask.cs
pizzaboxer 7e95fb4d8f
Deferred settings application system + new shortcut settings
this system took way too much effort to think of for some reason idk why
2024-08-13 00:10:18 +01:00

18 lines
334 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Bloxstrap.Models.SettingTasks
{
public interface ISettingTask
{
public bool OriginalState { get; set; }
public bool NewState { get; set; }
public void Execute();
}
}