Reworked directory structure.

This commit is contained in:
FrozenCow 2010-12-29 02:44:30 +01:00
parent b5bd4bd965
commit 9cdc23051f
13 changed files with 0 additions and 75 deletions

13
src/DMMySQLSource.java Normal file
View file

@ -0,0 +1,13 @@
/* MySQLSource class wrapper to expose protected properties */
import java.util.List;
public class DMMySQLSource extends MySQLSource {
public List<Warp> getAllWarps() {
return this.warps;
}
public List<Warp> getAllHomes() {
return this.homes;
}
}