summaryrefslogtreecommitdiffstats
path: root/EssentialsProtect/src/com/earth2me/essentials/protect/data/OwnedBlock.java
blob: dc28feae8d804ad604723b0480f9c279ef05a672 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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;
	}
}