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:
11
src/main/java/com/gmail/nossr50/database/PlayerStat.java
Normal file
11
src/main/java/com/gmail/nossr50/database/PlayerStat.java
Normal 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user