You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
481 B
15 lines
481 B
#ifndef PICKUP_H
|
|
#define PICKUP_H
|
|
|
|
struct Pickup;
|
|
struct Entity;
|
|
struct Parser_Object;
|
|
struct Hashmap;
|
|
|
|
void pickup_init(struct Pickup* pickup, int type);
|
|
void pickup_reset(struct Pickup* pickup);
|
|
struct Pickup* pickup_read(struct Parser_Object* parser_object, const char* name, struct Entity* parent_entity);
|
|
void pickup_write(struct Pickup* pickup, struct Hashmap* pickup_data);
|
|
void pickup_update(struct Pickup* pickup, float dt);
|
|
|
|
#endif |