ManiaMap.Godot
Procedural generation of metroidvania style maps for Godot .NET.
Feature2D.cs
1using Godot;
2
4{
8 [Tool]
9 [GlobalClass]
10 [Icon(ManiaMapResources.Icons.Feature2DIcon)]
11 public partial class Feature2D : CellChild2D, IFeature
12 {
14 [Export] public string FeatureName { get; set; } = "<None>";
15 }
16}
The base class for elements tied to a RoomNode2D's cell index.
Definition: CellChild2D.cs:11
A feature to associate with a cell.
Definition: Feature2D.cs:12
A feature to associate with a cell.
Definition: IFeature.cs:7