create Pattern interface

This commit is contained in:
dfsek
2021-07-27 19:39:02 -07:00
parent c8bb780312
commit 7430116fa9

View File

@@ -0,0 +1,7 @@
package com.dfsek.terra.addons.feature.locator.patterns;
import com.dfsek.terra.api.world.Column;
public interface Pattern {
boolean matches(int y, Column column);
}