RuneHive-Game
Loading...
Searching...
No Matches
PuzzleInterface.java
Go to the documentation of this file.
1package com.runehive.content.puzzle;
2
3public interface PuzzleInterface<T> {
4 void onSuccess(final T player);
5
6 void onFailure(final T player);
7}