Difference between revisions of "Computer Science/61b/Projects/Network/player/Move.java"

From lensowiki
Jump to: navigation, search
 
(No difference)

Latest revision as of 03:51, 20 February 2023

/* Move.java  */

package player;

/**
 *  A public class for holding all the fields in a move.  This class is a
 *  container for data, not an ADT; hence, all fields are public.
 *
 *  The moveKind field stores the type of move.  The x-coordinates index the
 *  horizontal direction (left to right) and the y-coordinates index the
 *  vertical direction (top to bottom).  x- and y-coordinates start at zero.
 *
 *  DO NOT CHANGE THIS FILE.
 */
public class Move {
The author of this file is Jonathan Shewchuk; consequently, I cannot make it freely available.