#ifndef __LEVEL_LIST_H__ #define __LEVEL_LIST_H__ typedef struct LevelList LevelList; struct Level; struct LevelList { unsigned int levelCount; struct Level ** levels; }; struct JSONNode; LevelList * LevelList_fromJSON(struct JSONNode * node); void LevelList_dispose(LevelList * self); #endif