package foundation.capacity;
|
|
import foundation.dao.preload.Bucket;
|
|
public class ActorTargetBucket extends Bucket<ActorTarget> {
|
|
private static ActorTargetBucket instance;
|
|
public static ActorTargetBucket getInstance() {
|
return instance;
|
}
|
|
public static ActorTargetBucket newInstance() {
|
return new ActorTargetBucket();
|
}
|
|
@Override
|
public void activate() {
|
instance = this;
|
}
|
|
}
|