15 lines
214 B
C++
15 lines
214 B
C++
#ifndef GUARD_PROJECTILES_H
|
|
#define GUARD_PROJECTILES_H
|
|
|
|
#include "utils.h"
|
|
|
|
typedef Position missile;
|
|
|
|
class torpedo : public Position {
|
|
public:
|
|
playerID owner;
|
|
torpedo(int x, int y, playerID owner);
|
|
};
|
|
|
|
#endif
|