Added PhpDoc for packet field types and changed float x,y,z to Vector3

This commit is contained in:
Dylan K. Taylor
2017-08-13 20:02:07 +01:00
parent 6480f7a989
commit 9be1b929a5
99 changed files with 424 additions and 207 deletions

View File

@ -34,10 +34,15 @@ class SetSpawnPositionPacket extends DataPacket{
const TYPE_PLAYER_SPAWN = 0;
const TYPE_WORLD_SPAWN = 1;
/** @var int */
public $spawnType;
/** @var int */
public $x;
/** @var int */
public $y;
/** @var int */
public $z;
/** @var bool */
public $spawnForced;
protected function decodePayload(){