You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
251 B
13 lines
251 B
8 months ago
|
package engine.ConfigParsing.EffectEntry;
|
||
9 months ago
|
|
||
9 months ago
|
import engine.mbEnums;
|
||
|
|
||
8 months ago
|
public class EffectModifier {
|
||
9 months ago
|
public mbEnums.ModType type;
|
||
8 months ago
|
public int min;
|
||
|
public int max;
|
||
|
public float scale;
|
||
|
public String slopeType;
|
||
|
public String target;
|
||
9 months ago
|
}
|