BsEditorCommand.cpp 404 B

12345678910
  1. //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
  2. //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
  3. #include "UndoRedo/BsEditorCommand.h"
  4. namespace bs
  5. {
  6. EditorCommand::EditorCommand(const String& description)
  7. :mDescription(description), mId(0)
  8. { }
  9. }