Inital Commit
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
#pragma once
|
||||
|
||||
#include <iostream>
|
||||
#include <string>
|
||||
#include <math.h>
|
||||
#include "creature.h"
|
||||
|
||||
|
||||
class Player : Creature
|
||||
{
|
||||
|
||||
private:
|
||||
// Inventory inventory;
|
||||
|
||||
public:
|
||||
|
||||
void Init();
|
||||
void LevelUp();
|
||||
void Die();
|
||||
void TakeDamage(int damageType, float damage);
|
||||
float GetHealth();
|
||||
};
|
||||
Reference in New Issue
Block a user