Entropie git · main
git clone https://git.christianimmanuel.de/games/Entropie.gitwget https://git.christianimmanuel.de/games/Entropie/archive/Entropie.tar.gzcollectable.h raw
#ifndef COLLECTABLE_H
#define COLLECTABLE_H
#include "object.h"
typedef enum {
Collectable_Default
} CollectableType;
typedef struct {
CollectableType type;
Object* object;
} Collectable;
Collectable* Collectable_create();
#endif