
com.seovic.core.objects.LiveObject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Core Interfaces and Classes
The newest version!
package com.seovic.core.objects;
import com.seovic.core.Entity;
/**
* @author Aleksandar Seovic 2013.10.09
*/
public abstract class LiveObject implements Entity
{
public abstract void start();
public abstract void stop();
public void restart()
{
stop();
start();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy