mirror of
https://github.com/Ottermandias/Glamourer.git
synced 2025-12-13 12:14:18 +01:00
20 lines
501 B
C#
20 lines
501 B
C#
using System;
|
|
using System.IO;
|
|
using System.Text;
|
|
using OtterGui.Classes;
|
|
using OtterGui.Log;
|
|
|
|
namespace Glamourer.Services;
|
|
|
|
/// <summary>
|
|
/// Any file type that we want to save via SaveService.
|
|
/// </summary>
|
|
public interface ISavable : ISavable<FilenameService>
|
|
{ }
|
|
|
|
public sealed class SaveService : SaveServiceBase<FilenameService>
|
|
{
|
|
public SaveService(Logger log, FrameworkManager framework, FilenameService fileNames)
|
|
: base(log, framework, fileNames)
|
|
{ }
|
|
}
|