RuneHive-Game
Loading...
Searching...
No Matches
PhaseInterface.java
Go to the documentation of this file.
1package com.runehive.content.activity.impl.zulrah;
2
3/**
4 * The Zulrah phase interface.
5 *
6 * @author Daniel
7 */
8public interface PhaseInterface<T> {
9
10 /** Handles what happens in the phase. */
11 void execute(final T activity);
12}
void execute(final T activity)
Handles what happens in the phase.