Organize to packages.

This commit is contained in:
Ilkka Seppala
2015-05-03 23:10:45 +03:00
parent 718b3cc61d
commit 61f0a2acf7
15 changed files with 57 additions and 14 deletions
@@ -0,0 +1,10 @@
package com.iluwatar.view;
import com.iluwatar.store.Store;
public interface View {
public void storeChanged(Store store);
public void render();
}