1
0
mirror of https://github.com/mcMMO-Dev/mcMMO.git synced 2026-02-19 18:33:00 +01:00

Refactoring - these should be with the rest of the DB files.

This commit is contained in:
GJ
2013-02-05 12:56:31 -05:00
parent ab92aa3ffa
commit 419937f62e
5 changed files with 6 additions and 6 deletions

View File

@@ -0,0 +1,11 @@
package com.gmail.nossr50.database;
public class PlayerStat {
public String name;
public int statVal = 0;
public PlayerStat(String name, int value) {
this.name = name;
this.statVal = value;
}
}