This commit is contained in:
snowleo 2011-10-19 18:17:19 +02:00
parent 1cbd10a38e
commit 4d877741d4

View File

@ -12,47 +12,47 @@ public class Settings extends StorageObject
{
@Comment(
{
"############################################################",
"# +------------------------------------------------------+ #",
"# | General Settings | #",
"# +------------------------------------------------------+ #",
"############################################################"
"##########################################################",
"+------------------------------------------------------+ #",
"| General Settings | #",
"+------------------------------------------------------+ #",
"##########################################################"
})
private General general = new General();
@Comment(
{
"############################################################",
"# +------------------------------------------------------+ #",
"# | Chat Settings | #",
"# +------------------------------------------------------+ #",
"############################################################"
"##########################################################",
"+------------------------------------------------------+ #",
"| Chat Settings | #",
"+------------------------------------------------------+ #",
"##########################################################"
})
private Chat chat = new Chat();
@Comment(
{
"############################################################",
"# +------------------------------------------------------+ #",
"# | Economy Settings | #",
"# +------------------------------------------------------+ #",
"############################################################"
"##########################################################",
"+------------------------------------------------------+ #",
"| Economy Settings | #",
"+------------------------------------------------------+ #",
"##########################################################"
})
private Economy economy = new Economy();
@Comment(
{
"############################################################",
"# +------------------------------------------------------+ #",
"# | Commands Settings | #",
"# +------------------------------------------------------+ #",
"############################################################"
"##########################################################",
"+------------------------------------------------------+ #",
"| Commands Settings | #",
"+------------------------------------------------------+ #",
"##########################################################"
})
private Commands commands = new Commands();
@Comment(
{
"############################################################",
"# +------------------------------------------------------+ #",
"# | Group Settings | #",
"# +------------------------------------------------------+ #",
"############################################################"
"##########################################################",
"+------------------------------------------------------+ #",
"| Group Settings | #",
"+------------------------------------------------------+ #",
"##########################################################"
})
private Groups groups = new Groups();
}