summaryrefslogtreewikicommitdiff
path: root/src/main/java/net/tylermurphy/hideAndSeek/database/PlayerInfo.java
blob: c1e007025a65caea014249d097582b00867ad8b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package net.tylermurphy.hideAndSeek.database;

import java.util.UUID;

public class PlayerInfo {

    public UUID uuid;
    public int wins, hider_wins, seeker_wins, games_played;

    public PlayerInfo(UUID uuid, int wins, int hider_wins, int seeker_wins, int games_played){
        this.uuid = uuid;
        this.wins = wins;
        this.hider_wins = hider_wins;
        this.seeker_wins = seeker_wins;
        this.games_played = games_played;
    }

}