Commit 5b8ae36d authored by Bruno Zanuttini's avatar Bruno Zanuttini
Browse files

Documented Environment::getEnvironmentActions

parent 0f52e46e
Loading
Loading
Loading
Loading
+11 −5
Original line number Diff line number Diff line
@@ -6,9 +6,15 @@ public abstract class Environment {
	public Environment() {
	}

	/**
	 * Returns a list of actions which can be performed on this environment but
	 * which do not affect any agent body (typically, require an artifact).
	 * 
	 * @return A list of actions which can be performed on this environment
	 */
	protected abstract List<Action> getEnvironmentActions();
	protected abstract List<Observation<?>> getEnvironmentObservations();

	protected abstract List<Observation<?>> getEnvironmentObservations();

	public void next() {