]> git.tdb.fi Git - libs/game.git/blob - examples/bassteroids/source/ship.cpp
Change Owned's constructor to take a pointer to the parent
[libs/game.git] / examples / bassteroids / source / ship.cpp
1 #include "ship.h"
2
3 using namespace Msp;
4
5 Ship::Ship(Game::Handle<Game::Entity> p, const Setup &s):
6         PhysicalEntity(p, s.physical),
7         setup(s),
8         mesh(this, s.mesh)
9 { }