Remove unnecessary explicits
This commit is contained in:
parent
8f396d0545
commit
cce98514a7
4 changed files with 4 additions and 4 deletions
|
@ -6,7 +6,7 @@ namespace pacman {
|
|||
|
||||
class Inky final : public Ghost {
|
||||
public:
|
||||
explicit Inky();
|
||||
Inky();
|
||||
void setTarget(GridPosition pacManPos, Direction pacManDir, GridPosition blinkyPos);
|
||||
|
||||
protected:
|
||||
|
|
|
@ -7,7 +7,7 @@ namespace pacman {
|
|||
|
||||
class Pellets {
|
||||
public:
|
||||
explicit Pellets();
|
||||
Pellets();
|
||||
|
||||
GridPosition currentSprite() const {
|
||||
return sprite;
|
||||
|
|
|
@ -6,7 +6,7 @@ namespace pacman {
|
|||
|
||||
class Pinky final : public Ghost {
|
||||
public:
|
||||
explicit Pinky();
|
||||
Pinky();
|
||||
void setTarget(GridPosition pacManPos, Direction pacManDir);
|
||||
|
||||
protected:
|
||||
|
|
|
@ -7,7 +7,7 @@ namespace pacman {
|
|||
|
||||
class SuperPellets {
|
||||
public:
|
||||
explicit SuperPellets();
|
||||
SuperPellets();
|
||||
|
||||
GridPosition currentSprite() const {
|
||||
return sprite;
|
||||
|
|
Loading…
Reference in a new issue