com.swingfrog.summer.ecs.component.BeanComponent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of summer Show documentation
Show all versions of summer Show documentation
a lightweight game server framework
package com.swingfrog.summer.ecs.component;
import com.swingfrog.summer.ecs.bean.Bean;
import com.swingfrog.summer.ecs.entity.Entity;
import javax.annotation.Nullable;
public interface BeanComponent, E extends Entity> extends Component {
@Nullable
B getBean();
B getOrCreateBean();
void setBean(B bean);
void removeBean();
void saveBean();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy