Nimbin2git.christianimmanuel.de / Games / Entropie / collectable.h

Entropie git · main

git clone https://git.christianimmanuel.de/games/Entropie.gitwget https://git.christianimmanuel.de/games/Entropie/archive/Entropie.tar.gz
collectable.h 248 B · 18 lines 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