using CopaData.FileInspector.GUI.Models; namespace CopaData.FileInspector.GUI.TilingPanels.Models; /// /// Base node for the binary tree structure to work.
/// A tiling node is either a , which has a reference to two s.
/// Those nodes may then be additional s, or, when at the end of the branch, a . ///
public abstract class TilingNode : Observable;