Sasha D.

asked • 04/24/21

Coding Help for a game project.

I need help coding (java) for the items the player will use for a game project; but I don't know how to go about it, here is a starter code given to help me out and I'm confused on how to move forward. Please Help


public class Item {

String name;

boolean embeded;

String shortDesc;

String description;

ArrayList<String> status = new ArrayList<String>();


public Item (){};

public Item(String n, String d){

name = n;

embeded = false;

shortDesc = d;

}


public String getDesc() {

return description;

}

}

1 Expert Answer

By:

Still looking for help? Get the right answer, fast.

Ask a question for free

Get a free answer to a quick problem.
Most questions answered within 4 hours.

OR

Find an Online Tutor Now

Choose an expert and meet online. No packages or subscriptions, pay only for the time you need.