Split referee data to model and view
[troll.git] / src / main / java / com / codingame / game / View.java
1 package com.codingame.game;
2
3 import java.util.Random;
4
5 import com.codingame.gameengine.module.entities.Sprite;
6 import com.codingame.gameengine.module.entities.Text;
7
8 class View {
9     Random random = new Random();
10     Sprite troll;
11     Text trollPositionGauge;
12 }