2
0

BsEditorCommand.cpp 243 B

12345678910111213
  1. #include "BsEditorCommand.h"
  2. namespace BansheeEngine
  3. {
  4. EditorCommand::EditorCommand(const WString& description)
  5. :mDescription(description)
  6. { }
  7. void EditorCommand::destroy(EditorCommand* command)
  8. {
  9. bs_delete(command);
  10. }
  11. }