-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPlayer.hpp
43 lines (31 loc) · 1.36 KB
/
Player.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* Player.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cdeniau <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2015/11/08 10:39:02 by cdeniau #+# #+# */
/* Updated: 2015/11/08 12:17:08 by cdeniau ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef PLAYER_HPP
# define PLAYER_HPP
# include "ft_retro.hpp"
# include <iostream>
# include <iomanip>
# include <sstream>
class Player : public Ship {
public:
Player(void);
//Player(unsigned int w, unsigned int h,unsigned int hp);
Player(Player const & src);
~Player(void);
Player &operator=(Player const &rhs);
void move(int c, int max_w);
void shoot(void);
//void destroy(void);
private:
};
//std::ostream & operator<<(std::ostream & out, Player const & src);
#endif