<?php
include_once $PATH_TO_CODE."/script/event/abstractevent.class.php";
class RealObjectMoveEvent extends AbstractEvent {
public static $REAL_OBJECT_MOVE_EVENT=1;
public function __construct($parObject, $parOldZone, $parNewZone) {
parent::__construct(RealObjectMoveEvent::$REAL_OBJECT_MOVE_EVENT);
$this->object = $parObject;
$this->oldZone = $parOldZone;
$this->newZone = $parNewZone;
}
}
?>