1 package net.sourceforge.simplegamenet.framework.gui;
2
3 import javax.swing.*;
4 import net.sourceforge.simplegamenet.specs.to.PlayerSettingsMap;
5
6 public class PlayersListPanel extends JPanel {
7
8 static final int ALL = 100;
9 static final int USERS = 10;
10 static final int BOTS = 20;
11
12 private int listType;
13
14 private JTable playersListTable;
15 private JComponent[][] playerSettingComponentsLists;
16
17 PlayersListPanel(PlayerSettingsMap playerSettingsMap) {
18 this(ALL, playerSettingsMap);
19 }
20
21 PlayersListPanel(int listType, PlayerSettingsMap playerSettingsMap) {
22
23
24 }
25
26 }