PlayBackThisFrameInterpolation and all it required...

This commit is contained in:
Nikolay Korolev
2019-06-30 13:59:55 +03:00
parent b2b750bc90
commit e2bd3573b4
58 changed files with 662 additions and 11 deletions

11
src/entities/Projectile.h Normal file
View File

@@ -0,0 +1,11 @@
#pragma once
#pragma once
#include "Object.h"
class CProjectile : public CObject
{
public:
void dtor(void) { this->CProjectile::~CProjectile(); }
};