Stendhal Quest Coding: Difference between revisions

Jump to navigation Jump to search
Content deleted Content added
imported>Blacklads
Undo revision 11659 by Ufizavipupu (Talk)
imported>Daniel-s
Creating a quest skeleton: Added "public List<String>" to make the tutorial example compile
Line 49: Line 49:
public String getName() {
public String getName() {
return "BeerForHayunn";
return "BeerForHayunn";
}

public List<String> getHistory(final Player player) {
final List<String> res = new ArrayList<String>();
return res;
}
}
}
}