Working terrain generator

This commit is contained in:
paulevsGitch 2022-04-25 12:01:22 +03:00
parent f59cf8bad2
commit b0da1d244a
10 changed files with 79 additions and 53 deletions

View file

@ -0,0 +1,6 @@
package ru.betterend.interfaces;
public interface BETargetChecker {
boolean be_isTarget();
void be_setTarget(boolean target);
}

View file

@ -1,5 +0,0 @@
package ru.betterend.interfaces;
public interface TargetChecker {
boolean be_isTarget();
}