Added a NoHashInterface to allow users to control their own hash db

This commit is contained in:
Dave
2014-12-21 00:20:57 +02:00
parent bce0155abe
commit c85ff25617

View File

@@ -0,0 +1,13 @@
package nodash.core.spheres;
import nodash.models.NoUser;
public interface NoHashInterface {
public void setup();
public void saveToFile();
public void addNewNoUser(NoUser user);
public void insertHash(String hash);
public void removeHash(String hash);
public boolean checkHash(String hash);
public int size();
}