Editor/Tool/ArchShells.cs

Defines a small static class ArchShells containing two string constants 'Buildings' and 'Roads'. It appears to be a simple container for architecture-related identifier keys used elsewhere in the editor.

namespace Sunless.Architecture;

public static class ArchShells
{
	public const string Buildings = "buildings";

	public const string Roads = "roads";
}