using System; using System.Collections.Generic; using System.Drawing; using System.Text; namespace SokoSolve.Core.UI.Nodes.UINodes{ class NodeUI : NodeBase { public NodeUI(GameUI myGameUI, int myDepth) : base(myGameUI, myDepth) { } } }