Stendhal Quest Coding: Difference between revisions
Jump to navigation
Jump to search
Content deleted Content added
imported>Daniel-s →Creating a quest skeleton: Added "public List<String>" to make the tutorial example compile |
imported>Daniel-s m →Creating a quest skeleton: - minor spaces and tabs formatting |
||
| Line 52: | Line 52: | ||
public List<String> getHistory(final Player player) { |
public List<String> getHistory(final Player player) { |
||
final List<String> res = new ArrayList<String>(); |
|||
return res; |
|||
} |
} |
||
} |
} |
||