com.artemis.prefab.PrefabReader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of artemis-odb-serializer Show documentation
Show all versions of artemis-odb-serializer Show documentation
Fork of Artemis Entity System Framework.
package com.artemis.prefab;
/**
* Reads prefab data, receiving the path
* from the prefab's {@link com.artemis.annotations.PrefabData}.
*
* The artemis-odb-serializer-json-libgdx
and
* artemis-odb-serializer-json
artifacts bundle a default
* JsonValuePrefabReader
, which covers typical usage.
*
* @see BasePrefab
* @see com.artemis.annotations.PrefabData
* @param source data type.
*/
public interface PrefabReader {
void initialize(String path);
DATA getData();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy