there is now a player character and the world renders using a cammera

This commit is contained in:
2026-04-09 13:11:55 -07:00
parent 09c310cb4a
commit af639e62c3
47 changed files with 1737 additions and 83 deletions

15
Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM localhost/skevety-root:latest
COPY ./external/ ./external
COPY ./source/ ./source/
COPY ./CMakeLists.txt .
RUN mkdir build
RUN cmake -DDOCKER=ON -B build .
RUN cmake --build build -j20
WORKDIR /app/build/source
CMD ["./sshGameServer"]