Made AbstractControl Implement Cloneable

This commit is contained in:
Nehon 2016-03-12 19:07:19 +01:00
parent 93b7be9b83
commit f391b9c3aa

View File

@ -45,7 +45,7 @@ import java.io.IOException;
*
* @author Kirill Vainer
*/
public abstract class AbstractControl implements Control {
public abstract class AbstractControl implements Control, Cloneable {
protected boolean enabled = true;
protected Spatial spatial;