-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: switch files over to using yaml (#427)
- Loading branch information
Showing
31 changed files
with
497 additions
and
256 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
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
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
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
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
48 changes: 24 additions & 24 deletions
48
core/src/main/java/com/sekwah/advancedportals/core/connector/containers/EntityContainer.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,24 +1,24 @@ | ||
package com.sekwah.advancedportals.core.connector.containers; | ||
|
||
import com.sekwah.advancedportals.core.serializeddata.BlockLocation; | ||
import com.sekwah.advancedportals.core.serializeddata.PlayerLocation; | ||
import com.sekwah.advancedportals.core.serializeddata.Vector; | ||
|
||
public interface EntityContainer { | ||
|
||
PlayerLocation getLoc(); | ||
|
||
double getHeight(); | ||
|
||
BlockLocation getBlockLoc(); | ||
|
||
boolean teleport(PlayerLocation location); | ||
|
||
WorldContainer getWorld(); | ||
|
||
String getName(); | ||
|
||
String getWorldName(); | ||
|
||
void setVelocity(Vector vector); | ||
} | ||
package com.sekwah.advancedportals.core.connector.containers; | ||
|
||
import com.sekwah.advancedportals.core.serializeddata.BlockLocation; | ||
import com.sekwah.advancedportals.core.serializeddata.PlayerLocation; | ||
import com.sekwah.advancedportals.core.serializeddata.Vector; | ||
|
||
public interface EntityContainer { | ||
|
||
PlayerLocation getLoc(); | ||
|
||
double getHeight(); | ||
|
||
BlockLocation getBlockLoc(); | ||
|
||
boolean teleport(PlayerLocation location); | ||
|
||
WorldContainer getWorld(); | ||
|
||
String getName(); | ||
|
||
String getWorldName(); | ||
|
||
void setVelocity(Vector vector); | ||
} |
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
Oops, something went wrong.