123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?php
- /*
- * To change this license header, choose License Headers in Project Properties.
- * To change this template file, choose Tools | Templates
- * and open the template in the editor.
- */
- namespace loyalsoft;
- /**
- * Description of Ins_ChuansongzhenMapData
- *
- * @author c'y'zhao
- */
- class Ins_ChuansongzhenMapData extends Object_ext{
-
- public $mapId;
- /**
- * @var int 使用传送门的场景的地图id
- */
- public $lastMapId;
- /**
- * @var float 具体位置 x
- */
- public $position_x;
-
- /**
- * 具体位置 y
- * @var float
- */
- public $position_y;
-
- /**
- * 具体位置 z
- * @var float
- */
- public $position_z;
- }
|