mirror of
https://github.com/Ottermandias/Glamourer.git
synced 2025-12-12 10:17:23 +01:00
12 lines
261 B
C#
12 lines
261 B
C#
using System.Diagnostics.CodeAnalysis;
|
|
|
|
namespace Glamourer;
|
|
|
|
public class FixedDesigns
|
|
{
|
|
public bool TryGetDesign(Actor.IIdentifier actor, [NotNullWhen(true)] out CharacterSave? save)
|
|
{
|
|
save = null;
|
|
return false;
|
|
}
|
|
}
|