-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
I'm not really sure how I even did this.
- Loading branch information
1 parent
9600255
commit c18beeb
Showing
4 changed files
with
57 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
...ain/java/io/github/elytra/movingworld/common/experiments/newassembly/WorldReadResult.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package io.github.elytra.movingworld.common.experiments.newassembly; | ||
|
||
/** | ||
* Created by darkevilmac on 11/15/2016. | ||
*/ | ||
public class WorldReadResult { | ||
} |
14 changes: 14 additions & 0 deletions
14
src/main/java/io/github/elytra/movingworld/common/experiments/newassembly/WorldReader.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package io.github.elytra.movingworld.common.experiments.newassembly; | ||
|
||
import net.minecraft.util.math.BlockPos; | ||
|
||
/** | ||
* Used to read from a world into a collection. | ||
*/ | ||
public class WorldReader { | ||
|
||
private void readBlock(BlockPos pos){ | ||
|
||
} | ||
|
||
} |
7 changes: 7 additions & 0 deletions
7
src/main/java/io/github/elytra/movingworld/common/experiments/newassembly/WorldWriter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package io.github.elytra.movingworld.common.experiments.newassembly; | ||
|
||
/** | ||
* Used to write a block collection to a world. | ||
*/ | ||
public class WorldWriter { | ||
} |