Systems/LevelType.cs

Defines a small enum LevelType in the BrickJam namespace that lists possible level types: None, Shop, Mansion, Dungeon, and Bathrooms.

namespace BrickJam;

public enum LevelType
{
	None,
	Shop,
	Mansion,
	Dungeon,
	Bathrooms
}