package org.ntlab.radishforandroidstudio.framework.subject; import org.ntlab.radishforandroidstudio.framework.event.BulletShotEvent; import org.ntlab.radishforandroidstudio.framework.listener.BulletShotListener; public class BulletShotSubject extends MySubject<BulletShotListener, BulletShotEvent> { public final static BulletShotSubject own = new BulletShotSubject(); private BulletShotSubject() { super(); } public static BulletShotSubject getInstance() { return own; } }