mirror of
https://github.com/praktimarc/kst4contest.git
synced 2026-07-14 00:26:52 +02:00
12 lines
294 B
Java
12 lines
294 B
Java
package kst4contest.view.map;
|
|
|
|
/**
|
|
* Abstraction for path analysis.
|
|
*
|
|
* First implementation can be geometry-only.
|
|
* Later this can call terrain APIs, caching layers, LOS checks, etc.
|
|
*/
|
|
public interface PathAnalysisService {
|
|
|
|
PathAnalysisResult analyze(PathAnalysisRequest request);
|
|
} |