mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2026-08-15 13:04:36 +00:00
9 lines
174 B
C#
9 lines
174 B
C#
|
|
namespace MinecraftClient.Pathing.Goals
|
||
|
|
{
|
||
|
|
public interface IGoal
|
||
|
|
{
|
||
|
|
bool IsInGoal(int x, int y, int z);
|
||
|
|
double Heuristic(int x, int y, int z);
|
||
|
|
}
|
||
|
|
}
|