home *** CD-ROM | disk | FTP | other *** search
/ Java for 3D & VRML Worlds / Java for 3d and VRML Worlds.iso / examples / chap05 / MuProtocol.java < prev    next >
Encoding:
Java Source  |  1996-10-06  |  211 b   |  7 lines

  1. // MuProtocol.java
  2. // common constant for server and client
  3. public class MuProtocol {
  4.    public final static int PORT = 4130;
  5.    public final static int MOVE = 1;
  6.    public final static int ROTATION = 2;
  7. }