Nimbin2git.christianimmanuel.de / Games / strichmaennchen / human.h

strichmaennchen git · main

git clone https://git.christianimmanuel.de/games/strichmaennchen.gitwget https://git.christianimmanuel.de/games/strichmaennchen/archive/strichmaennchen.tar.gz
human.h 298 B · 15 lines 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