summaryrefslogtreecommitdiffstats
path: root/src/jeopardy/Game.java
blob: f9f2872a27703732e116bd66c33acd38f07d9748 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package jeopardy;

import java.util.ArrayList;

public class Game {

	GameDescription description;
	ArrayList<ArrayList<AQPair>> content;
	
	Game(){}
	
	Game(GameDescription d, ArrayList<ArrayList<AQPair>> c) {
		description = d;
		content = c;
	}
}