Examples of ChatBoard


Examples of Stutsman.C4.net.ChatBoard

    //information from the server
    chatArea=boarded;
    name = n;
    //Creates a fake board until it gets the information from the server
    //This won't show up normally
    display = new ChatBoard(1,1,Color.black,Color.black,boarded);
   
    //The thread that constantly waits for input from the server
    Thread x = new Thread(new runner());
    x.start();
  }
View Full Code Here

Examples of Stutsman.C4.net.ChatBoard

            chatOpen=false; //Finish exploding
            return; //Have a nice day :)
          case C4Protocol.SETTINGS:
            //This actually gets the settings
            Object[] haha = C4Protocol.parseSettings(act);
            display=new ChatBoard(
              (Integer) haha[0],(Integer) haha[1],(Color) haha[2],
              (Color) haha[3],chatArea);
            fakeBoard = false;
            break;
          case C4Protocol.FAIL:
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.