Turtle programming game that was never finished to a playable state (but had cute graphics and sounds)
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.
tortuga/src/com/porcupine/mutable/MFloat.java

32 lines
356 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;
}
}