create base World interface

This commit is contained in:
dfsek 2021-11-28 16:36:57 -07:00
parent 4287ff8a3c
commit 86dee3bb29
2 changed files with 8 additions and 1 deletions

View File

@ -3,5 +3,5 @@ package com.dfsek.terra.api.world.access;
import com.dfsek.terra.api.Handle; import com.dfsek.terra.api.Handle;
public interface ReadableWorld extends Handle { public interface ReadableWorld extends World {
} }

View File

@ -0,0 +1,7 @@
package com.dfsek.terra.api.world.access;
import com.dfsek.terra.api.Handle;
public interface World extends Handle {
}