com.blastedstudios.gdxworld.world.metadata.GDXMetadata Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of GDXWorld Show documentation
Show all versions of GDXWorld Show documentation
Uploads all artifacts belonging to configuration ':archives'
The newest version!
package com.blastedstudios.gdxworld.world.metadata;
import java.io.Serializable;
import java.util.LinkedList;
public class GDXMetadata implements Cloneable, Serializable{
private static final long serialVersionUID = 1L;
private LinkedList cameraShots = new LinkedList<>();
@Override public Object clone(){
GDXMetadata clone = new GDXMetadata();
for(CameraShot shots : cameraShots)
clone.getCameraShots().add((CameraShot) shots.clone());
return clone;
}
@Override public String toString(){
return "[GDXMetadata cameraShot.size:" + cameraShots.size() + "]";
}
public LinkedList getCameraShots() {
return cameraShots;
}
public void setCameraShots(LinkedList cameraShots) {
this.cameraShots = cameraShots;
}
}