working physics

This commit is contained in:
2026-03-04 00:18:56 +02:00
parent 02898d62c0
commit 9884006888
12 changed files with 462 additions and 53 deletions

16
game/server/physicsprop.h Normal file
View File

@@ -0,0 +1,16 @@
#ifndef PHYSICS_PROP_H
#define PHYSICS_PROP_H
#include "basemodelentity.h"
class CPhysicsProp: public CBaseModelEntity
{
friend CBaseModelEntity;
public:
DECLARE_CLASS(CPhysicsProp, CBaseModelEntity);
virtual void Spawn() override;
virtual void EnableMovement();
virtual void DisableMovement();
};
#endif