Major networking refactoring to allow for snapshot filtering outside of netcode
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
#ifndef ExplosionEffectSystem_h__
|
||||
#define ExplosionEffectSystem_h__
|
||||
|
||||
#include "Common.h"
|
||||
#include "Core/System.h"
|
||||
|
||||
class ExplosionEffectSystem : public PureSystem
|
||||
{
|
||||
public:
|
||||
ExplosionEffectSystem(SystemParams params)
|
||||
: System(params)
|
||||
, PureSystem("ExplosionEffect")
|
||||
{ }
|
||||
|
||||
virtual void UpdateComponent(EntityWrapper& entity, ComponentWrapper& component, double dt) override;
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user