File size: 318 Bytes
2311079 |
1 2 3 4 5 6 7 8 9 10 11 |
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";
}
|