[2 / 1 / ?]

Intro to Java

No.51027081 ViewReplyReportDelete
public class Rock
{
// Create private field to hold the GraphicObject associated with this rock




/**
* TODO: Implement this.
*
* @param x the x position of the rock
* @param y the y position of the rock
*/
public Rock(float x, float y)
{
// Initialize this rock's associated GraphicObject with type "ROCK" at
// this rock's x and y coordinates

}

what does this mean