summaryrefslogtreecommitdiff
path: root/src/main/java/com/redstoner/modules/damnspam/SpamInput.java
blob: 59a701719ab107defb4ea2cd1085d70e561eae55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.redstoner.modules.damnspam;

public class SpamInput {

	protected String player;
	protected double timeoutOn;
	protected double timeoutOff;
	protected double lastTime;

	protected SpamInput(String player, double timeoutOff, double timeoutOn, double lastTime) {
		this.player = player;
		this.timeoutOff = timeoutOff;
		this.timeoutOn = timeoutOn;
		this.lastTime = lastTime;
	}

}