Computer Science/61b/Projects/Network/player/Move.java
< Computer Science | 61b | Projects | Network | playerRevision as of 03:51, 20 February 2023 by Lensovet (talk | contribs) (Lensovet moved page CS/61b/Projects/Network/player/Move.java to Computer Science/61b/Projects/Network/player/Move.java)
/* 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.