// File: AddCommand.hpp // //---------------------------------------------------------------------------// // Date Who Modification // #pragma once #include "Command.h" #include class AddCommand : public Command { public: AddCommand(Adept::Entity *entity); virtual ~AddCommand(); Adept::Entity *addedObject; void Execute(); void Undo(); void Move(); };