24 lines
508 B
C++
24 lines
508 B
C++
|
/*
|
||
|
* =====================================================================================
|
||
|
*
|
||
|
* Filename: ServerPlayer.hpp
|
||
|
*
|
||
|
* Description:
|
||
|
*
|
||
|
* Created: 22/01/2019 23:11:34
|
||
|
*
|
||
|
* Author: Quentin Bazin, <quent42340@gmail.com>
|
||
|
*
|
||
|
* =====================================================================================
|
||
|
*/
|
||
|
#ifndef SERVERPLAYER_HPP_
|
||
|
#define SERVERPLAYER_HPP_
|
||
|
|
||
|
#include "Player.hpp"
|
||
|
|
||
|
class ServerPlayer : public Player {
|
||
|
public:
|
||
|
};
|
||
|
|
||
|
#endif // SERVERPLAYER_HPP_
|