actionplaceobject.c 388 B

12345678910111213141516171819202122
  1. class ActionPlaceObjectCB : ActiondeployObjectCB
  2. {
  3. override void CreateActionComponent()
  4. {
  5. m_ActionData.m_ActionComponent = new CAContinuousTime(UATimeSpent.DEFAULT_PLACE);
  6. }
  7. }
  8. class ActionPlaceObject : ActionDeployObject
  9. {
  10. void ActionPlaceObject()
  11. {
  12. m_CallbackClass = ActionPlaceObjectCB;
  13. m_Text = "#place_object";
  14. }
  15. override bool HasProgress()
  16. {
  17. return false;
  18. }
  19. }