Testing out JmonkeyEngine to make a game in Scala with Akka Actors within a pure FP layer
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.

10 lines
265 B

4 years ago
  1. package wow.doge.mygame.components;
  2. import com.jme3.math.Vector3f;
  3. import wow.doge.mygame.math.ImVector3f;
  4. //test java final case class instantiation
  5. public class Test {
  6. public void test() {
  7. var pos = Position.apply(ImVector3f.apply(1, 1, 1));
  8. }
  9. }