strichmaennchen git · main
git clone https://git.christianimmanuel.de/games/strichmaennchen.gitwget https://git.christianimmanuel.de/games/strichmaennchen/archive/strichmaennchen.tar.gzhuman.h raw
#ifndef HUMAN_H
#define HUMAN_H
#include "object.h"
typedef struct Human {
Object* object;
bool isPlayer;
} Human;
Human* Human_create(Vec3 position, VertexPreset preset, Vec3 size, bool is_player, float weiht);
void Player_update(Human *player, Userinput *input, Camera *cam);
#endif