initial game

This commit is contained in:
programsnail 2024-07-22 21:22:52 +03:00
parent 4570d6e593
commit adabb50a9e
10 changed files with 200 additions and 132 deletions

View file

@ -1,6 +1,8 @@
#pragma once
class Player {
public:
private:
#include "Vec.hpp"
struct Player {
Vecf pos;
Vecf direction;
};