Spritesheet generator for the tortuga game
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.

29 lines
353 B

package com.porcupine.mutable;
/**
* Mutable float
*
* @author Ondřej Hruška (MightyPork)
*/
public class MFloat extends AbstractMutable<Float> {
/**
* Mutable float
*
* @param o value
*/
public MFloat(Float o) {
super(o);
}
/**
* Imp.c.
*/
public MFloat() {}
@Override
protected Float getDefault() {
return 0f;
}
}