Inital Commit

This commit is contained in:
Timothy O'Barr
2026-08-07 13:10:07 -05:00
commit 34f7d3f7bb
72 changed files with 31475 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
#include "player.h"
void Player::Init()
{
// initalize stats, room location, inventory and item data
}
void Player::LevelUp()
{
}
void Player::Die()
{
// Now. You must, die!
}
void Player::TakeDamage(int damageType, float damage)
{
// Ouch
}
float Player::GetHealth()
{
return 0.0f;
}