Sorry for this painful commit, but git somehow f'd up and sees changes in files where there aren't any.
20 lines
371 B
Java
Executable File
20 lines
371 B
Java
Executable File
package eu.crushedpixel.replaymod.holders;
|
|
|
|
public class PositionKeyframe extends Keyframe {
|
|
|
|
private Position position;
|
|
|
|
public PositionKeyframe(int realTime, Position position) {
|
|
super(realTime);
|
|
this.position = position;
|
|
}
|
|
|
|
public Position getPosition() {
|
|
return position;
|
|
}
|
|
|
|
public void setPosition(Position position) {
|
|
this.position = position;
|
|
}
|
|
|
|
} |