23 lines
254 B
C++
23 lines
254 B
C++
#include "precompile.h"
|
|
|
|
#include "bullet.h"
|
|
#include "metamgr.h"
|
|
#include "movement.h"
|
|
|
|
Bullet::Bullet():Entity()
|
|
{
|
|
}
|
|
|
|
Bullet::~Bullet()
|
|
{
|
|
}
|
|
|
|
void Bullet::Initialize()
|
|
{
|
|
}
|
|
|
|
void Bullet::Update(int delta_time)
|
|
{
|
|
// movement->Update(delta_time);
|
|
}
|