1#ifndef CollisionDeregistrationCommand_H
2#define CollisionDeregistrationCommand_H
Defines the base class for all command objects.
Base class for objects that can participate in collision detection.
Definition Collidable.h:26
void Execute() override
Executes the deregistration command for the collidable object. This method removes the collidable obj...
Definition CollisionDeregistrationCommand.cpp:7
CollisionDeregistrationCommand(Collidable *col)
Constructor for CollisionDeregistrationCommand.
Definition CollisionDeregistrationCommand.cpp:5
Collidable * ptrCol
Pointer to the collidable object to be deregistered. This pointer is used to access the collidable ob...
Definition CollisionDeregistrationCommand.h:38
Base class for all command objects.
Definition CommandBase.h:19