//--------------------------------------------------------------------------------------------------------------------------------------------------- // // 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; public static string secretCode; public static void moveTo(Node thisplace) { //Console.WriteLine(thisplace.getData()); Console.WriteLine(thisplace.getData()); secretCode += thisplace.returnSecret(); } } }