summaryrefslogtreecommitdiffstats
path: root/EssentialsProtect/src/com/earth2me/essentials/protect/data/OwnedBlock.java
blob: dea124b58d5aa28e942738fed1dcb30650cf097e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.earth2me.essentials.protect.data;

public class OwnedBlock {
	final int x;
	final int y;
	final int z;
	final String world;
	final String playerName;

	public OwnedBlock(int x, int y, int z, String world, String playerName)
	{
		this.x = x;
		this.y = y;
		this.z = z;
		this.world = world;
		this.playerName = playerName;
	}
}