Minor Conquer buff

This commit is contained in:
Anuken
2023-02-15 10:34:52 -05:00
parent 460dbff7d1
commit d457901d2e
2 changed files with 16 additions and 6 deletions

View File

@@ -0,0 +1,10 @@
package mindustry.logic;
import mindustry.ctype.*;
//TODO
public interface Settable{
void setProperty(LAccess prop, double value);
void setProperty(LAccess prop, Object value);
void setProperty(UnlockableContent content, double value);
}