Działa konwersja nmt dla asc i xyz.

This commit is contained in:
2026-01-14 22:39:00 +01:00
parent 1f4c5b52f2
commit 6931334fc6
55 changed files with 343 additions and 450 deletions

View File

@@ -0,0 +1,13 @@
package pl.wat.ms4ds.terrain;
class EmptyBigSquare extends BigSquare {
public static final EmptyBigSquare EMPTY_BIG_SQUARE = new EmptyBigSquare();
private EmptyBigSquare() {
}
Square getKwadrat(int ssX, int ssY) {
return Square.EMPTY;
}
}