All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.almasb.fxgl.pathfinding.dungeon.DungeonCell Maven / Gradle / Ivy

The newest version!
/*
 * FXGL - JavaFX Game Library. The MIT License (MIT).
 * Copyright (c) AlmasB ([email protected]).
 * See LICENSE for details.
 */

package com.almasb.fxgl.pathfinding.dungeon;

import com.almasb.fxgl.pathfinding.CellState;
import com.almasb.fxgl.pathfinding.astar.AStarCell;

public class DungeonCell extends AStarCell {
    public DungeonCell(int x, int y) {
        super(x, y, CellState.NOT_WALKABLE);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy