1 16 17 package com.buchuki.ensmer.input.event.semantic; 18 19 import java.util.EventObject ; 20 import javax.vecmath.Matrix4f; 21 22 27 public class UserMoveEvent extends EventObject { 28 29 43 public UserMoveEvent(Object source, Matrix4f motion) { 44 super(source); 45 this.motion = motion; 46 } 47 48 55 public Matrix4f getMotion() { 56 return motion; 57 } 58 59 62 private Matrix4f motion; 63 } 64 | Popular Tags |