Refactored and Cleaned up some code. First iteration of Fireplace Lockbox puzzle. Additional artwork for the end of chapter one.

This commit is contained in:
2026-03-28 11:28:59 +00:00
parent b3b569e98f
commit 403bb2681d
23 changed files with 83 additions and 3 deletions

View File

@@ -0,0 +1,12 @@
using System;
[AttributeUsage(AttributeTargets.Field)]
public abstract class DisplayNameAttribute : Attribute
{
public string Name { get; }
public DisplayNameAttribute(string name)
{
Name = name;
}
}