initial commit

This commit is contained in:
V00DI3
2026-07-29 23:55:01 +03:00
commit 2d8738f8e8
39 changed files with 442 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
/*+=====================================================================
File: Player.h
Summary: Header file for the Player class
========================================================================+*/
#pragma once
namespace Game {
class Player {
public:
void jump();
};
}