Example #1
0
File: LJ.cs Project: Crwth/UOnet
 public void Start(Form1 form1, uoNet.UO UO)
 {
     this.form1 = form1;
     this.UO = UO;
     ScriptThread = new Thread(new ThreadStart(MainLoop));
     ScriptThread.Start();
 }
Example #2
0
File: LJ.cs Project: Crwth/UOnet
 public void Start(Form1 form1, uoNet.UO UO, UOProxy.UOProxy proxy)
 {
 }
Example #3
0
 public void Start(Form1 form1, uoNet.UO UO)
 {
 }
Example #4
0
File: LJ.cs Project: Crwth/UOnet
 public Tree(int x, int y, int Z, int GraphicID, uoNet.UO UO)
 {
     // TODO: Complete member initialization
     this.X = (ushort)x;
     this.Y = (ushort)y;
     this.Z = (byte)Z;
     this.GraphicID = (short)GraphicID;
     this.UO = UO;
 }
Example #5
0
        public void Start(Form1 form1, uoNet.UO UO, UOProxy.UOProxy proxy)
        {
            // TODO: Complete member initialization
            this.form1 = form1;
            this.UO = UO;
            this.Proxy = proxy;

            ScriptThread = new Thread(new ThreadStart(MainLoop));
            ScriptThread.Start();
        }