taha1992's picture
Upload 695 files
2311079 verified
raw
history blame
318 Bytes
package com.tacticmaster.db;
public class PlayerTable {
public static final int DEFAULT_PLAYER_RATING = 1600;
public static final String PLAYER_TABLE_NAME = "player_table";
public static final String COLUMN_PLAYER_ID = "PlayerId";
public static final String COLUMN_PLAYER_RATING = "PlayerRating";
}