First commit of replay system

This commit is contained in:
Nikolay Korolev
2019-06-22 21:16:29 +03:00
parent 75ede35342
commit 8b47a5b9f4
14 changed files with 544 additions and 10 deletions

12
src/BulletTrace.h Normal file
View File

@@ -0,0 +1,12 @@
#pragma once
#include "common.h"
struct CBulletTrace
{
CVector m_vecInf;
CVector m_vecSup;
char m_bInUse;
char m_bFramesInUse;
char m_bLifeTime;
};