All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.blastedstudios.gdxworld.world.metadata.GDXMetadata Maven / Gradle / Ivy

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;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy