summaryrefslogtreecommitdiffstats
path: root/EssentialsProtect/src/com/earth2me/essentials/protect/data/OwnedBlock.java
diff options
context:
space:
mode:
authorementalo <ementalo@e251c2fe-e539-e718-e476-b85c1f46cddb>2011-06-02 23:09:59 +0000
committerementalo <ementalo@e251c2fe-e539-e718-e476-b85c1f46cddb>2011-06-02 23:09:59 +0000
commitf6cedda1e227f4e8e5a18bfc864ef515f286850e (patch)
tree5f3e873e899cb893ca9e8f7b524538e138fc1f77 /EssentialsProtect/src/com/earth2me/essentials/protect/data/OwnedBlock.java
parent3dab3d8df8ab31ce5330bb447983bcc498c2f9c6 (diff)
downloadEssentials-f6cedda1e227f4e8e5a18bfc864ef515f286850e.tar
Essentials-f6cedda1e227f4e8e5a18bfc864ef515f286850e.tar.gz
Essentials-f6cedda1e227f4e8e5a18bfc864ef515f286850e.tar.lz
Essentials-f6cedda1e227f4e8e5a18bfc864ef515f286850e.tar.xz
Essentials-f6cedda1e227f4e8e5a18bfc864ef515f286850e.zip
[trunk] Protect refactors (formally known as 3.0) needs ***EXTENSIVE*** testing
git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1574 e251c2fe-e539-e718-e476-b85c1f46cddb
Diffstat (limited to 'EssentialsProtect/src/com/earth2me/essentials/protect/data/OwnedBlock.java')
-rw-r--r--EssentialsProtect/src/com/earth2me/essentials/protect/data/OwnedBlock.java9
1 files changed, 9 insertions, 0 deletions
diff --git a/EssentialsProtect/src/com/earth2me/essentials/protect/data/OwnedBlock.java b/EssentialsProtect/src/com/earth2me/essentials/protect/data/OwnedBlock.java
new file mode 100644
index 000000000..b9b036798
--- /dev/null
+++ b/EssentialsProtect/src/com/earth2me/essentials/protect/data/OwnedBlock.java
@@ -0,0 +1,9 @@
+package com.earth2me.essentials.protect.data;
+
+public class OwnedBlock {
+ int x;
+ int y;
+ int z;
+ String world;
+ String playerName;
+}