RuneHive-Game
Loading...
Searching...
No Matches
TinterfaceText.java
Go to the documentation of this file.
1package com.runehive.util;
2
3public class TinterfaceText {
4 public int id;
5 public String currentState;
6
7 public TinterfaceText(String s, int id) {
8 this.currentState = s;
9 this.id = id;
10 }
11}