Uses of Class
com.bombinggames.wurfelengine.core.map.Map
-
Packages that use Map Package Description com.bombinggames.wurfelengine.core com.bombinggames.wurfelengine.core.map -
-
Uses of Map in com.bombinggames.wurfelengine.core
Methods in com.bombinggames.wurfelengine.core that return Map Modifier and Type Method Description static Map
Controller. getMap()
Returns the currently loaded map.Methods in com.bombinggames.wurfelengine.core with parameters of type Map Modifier and Type Method Description static void
Controller. setMap(Map map)
-
Uses of Map in com.bombinggames.wurfelengine.core.map
Methods in com.bombinggames.wurfelengine.core.map with parameters of type Map Modifier and Type Method Description void
Chunk. dispose(Map map, java.io.File path)
disposes the chunkboolean
Chunk. save(Map map, java.io.File path, int saveSlot)
Save this chunk on storage.Constructors in com.bombinggames.wurfelengine.core.map with parameters of type Map Constructor Description Chunk(Map map, int coordX, int coordY)
Creates a Chunk filled with empty cells (likely air).Chunk(Map map, java.io.File path, int coordX, int coordY, Generator generator)
Creates a chunk by trying to load and if this fails it generates a new one.ChunkLoader(Map map, java.io.File path, int coordX, int coordY, Generator generator)
-