SUPER Space invader : Turbo edition DX - VS GOD 1.0.0
A simple space invader ripoff
projectiles.cpp
Go to the documentation of this file.
1
10#include "projectiles.h"
11
12Torpedo::Torpedo(int x, int y, playerID owner) : Position(x, y) {
13 this->owner = owner;
14}
playerID owner
id of the player that shot the torpedo
Definition: projectiles.h:28
Torpedo(int x, int y, playerID owner)
constuctor for the torpedo class
Definition: projectiles.cpp:12
projectiles data storage
unsigned playerID
Definition: utils.h:54
nsGraphics::Vec2D Position
Definition: utils.h:53