Добавлена система NPC, а также боевая система.

This commit is contained in:
DeLiss
2026-06-11 12:45:30 +05:00
parent 5d4940f754
commit f0a928938b
19 changed files with 427 additions and 19 deletions

6
include/point.h Normal file
View File

@@ -0,0 +1,6 @@
#pragma once
struct Point {
int x = 0;
int y = 0;
};