mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-04-25 07:59:44 +00:00

git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1574 e251c2fe-e539-e718-e476-b85c1f46cddb
9 lines
134 B
Java
9 lines
134 B
Java
package com.earth2me.essentials.protect.data;
|
|
|
|
public class OwnedBlock {
|
|
int x;
|
|
int y;
|
|
int z;
|
|
String world;
|
|
String playerName;
|
|
}
|