Skip to content

Commit

Permalink
Interface for classes which can read decorations from some source.
Browse files Browse the repository at this point in the history
See #49
  • Loading branch information
nvcleemp committed Feb 26, 2018
1 parent cd177c3 commit 02a9a8f
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions cage/decoration/io/DecorationReader.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package cage.decoration.io;

import cage.decoration.Decoration;

/**
* Interface for classes which can read decorations from some source.
* @author nvcleemp
*/
public interface DecorationReader {
Decoration getNext();
}

0 comments on commit 02a9a8f

Please sign in to comment.