Knight.h
 1  #pragma once
 2  #include "Player.h"
 3  
 4  class Knight : public Player
 5  {
 6  public:
 7  	Knight();
 8  	Knight(int hp);
 9  	~Knight();
10  	
11  	virtual void PrintInfo();
12  
13  };
14