-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
10 changes: 5 additions & 5 deletions
10
src/main/java/com/gtnewhorizons/mutecore/api/data/WorldContainer.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 |
---|---|---|
@@ -1,20 +1,20 @@ | ||
package com.gtnewhorizons.mutecore.api.data; | ||
|
||
import net.minecraft.world.IBlockAccess; | ||
import net.minecraft.world.World; | ||
|
||
public class WorldContainer { | ||
|
||
private IBlockAccess world; | ||
private World world; | ||
|
||
public WorldContainer(IBlockAccess world) { | ||
public WorldContainer(World world) { | ||
this.world = world; | ||
} | ||
|
||
public IBlockAccess getWorld() { | ||
public World getWorld() { | ||
return world; | ||
} | ||
|
||
public void setWorld(IBlockAccess world) { | ||
public void setWorld(World world) { | ||
this.world = world; | ||
} | ||
} |