jpower.event.DeadEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of JPower Show documentation
Show all versions of JPower Show documentation
Powerful Library for the JVM
package jpower.event;
import java.io.Serializable;
public class DeadEvent implements Serializable
{
private final Object event;
public DeadEvent(Object event)
{
this.event = event;
}
public Object getEvent()
{
return event;
}
public Class> getType()
{
return event.getClass();
}
}