com.artemis.link.UniFieldMutator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of artemis-odb Show documentation
Show all versions of artemis-odb Show documentation
Fork of Artemis Entity System Framework.
package com.artemis.link;
import com.artemis.Component;
import com.artemis.World;
import com.artemis.utils.reflect.Field;
/**
* Internal interface. Used for reading/writing entity
* fields pointing to a single entity.
*/
public interface UniFieldMutator {
int read(Component c, Field f);
void write(int value, Component c, Field f);
void setWorld(World world);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy