//--------------------------------------------------------------------------------------------------------------------------------------------------- // // Copyright (C)2007 DarkWynter Studios. All rights reserved. // //--------------------------------------------------------------------------------------------------------------------------------------------------- // {Contact : darkwynter.com for licensing information //--------------------------------------------------------------------------------------------------------------------------------------------------- namespace DarkWynter.Engine.Compiler { #region Using Statements using System; using System.Collections.Generic; using System.Text; using System.IO; #endregion public class Thought { private int startnode = 1; /// /// The secret message returned by correctly traversing the tree /// public static string secretCode; /// /// Code for the students to use to move thier thought -- dummy code /// /// ID of the node public static void moveTo(Node thisplace) { //Console.WriteLine(thisplace.getData()); Console.WriteLine(thisplace.getData()); secretCode += thisplace.returnSecret(); } } }