1
0
mirror of https://github.com/Rogiel/star-replay synced 2025-12-06 06:32:46 +00:00

Updated the parser to the latest build

This commit is contained in:
2016-06-18 17:46:42 -03:00
parent 3e0e93c994
commit fee21bc228
18 changed files with 18831 additions and 7 deletions

View File

@@ -31,7 +31,7 @@ namespace Rogiel\StarReplay\Event\Game;
class DecrementGameTimeRemainingEvent extends AbstractGameEvent {
/** @var integer */
public $decrementMs;
public $decrementSeconds;
/**
* @return string the event name
@@ -44,10 +44,10 @@ class DecrementGameTimeRemainingEvent extends AbstractGameEvent {
* @return string a string representation of the event
*/
public function __toString() {
return $this->getEventName()."{ decrementMs = $this->decrementMs }";
return $this->getEventName()."{ decrementSeconds = $this->decrementSeconds }";
}
/** @return integer */
public function getDecrementMs() { return $this->decrementMs; }
public function getDecrementSeconds() { return $this->decrementSeconds; }
}

View File

@@ -30,7 +30,7 @@ namespace Rogiel\StarReplay\Event\Game;
class TriggerCameraMoveEvent extends AbstractGameEvent {
/** @var array */
/** @var \Rogiel\StarReplay\Event\Game\Entity\SubgroupUnit */
public $reason;
/**
@@ -47,7 +47,7 @@ class TriggerCameraMoveEvent extends AbstractGameEvent {
return $this->getEventName()."{ reason = $this->reason }";
}
/** @return array */
/** @return \Rogiel\StarReplay\Event\Game\Entity\SubgroupUnit */
public function getReason() { return $this->reason; }
}

1340
src/Version/Version38535.php Normal file

File diff suppressed because it is too large Load Diff

1340
src/Version/Version38624.php Normal file

File diff suppressed because it is too large Load Diff

1342
src/Version/Version39117.php Normal file

File diff suppressed because it is too large Load Diff

1343
src/Version/Version39948.php Normal file

File diff suppressed because it is too large Load Diff

1343
src/Version/Version40384.php Normal file

File diff suppressed because it is too large Load Diff

1343
src/Version/Version40977.php Normal file

File diff suppressed because it is too large Load Diff

1343
src/Version/Version41128.php Normal file

File diff suppressed because it is too large Load Diff

1343
src/Version/Version41219.php Normal file

File diff suppressed because it is too large Load Diff

1342
src/Version/Version41743.php Normal file

File diff suppressed because it is too large Load Diff

1342
src/Version/Version41973.php Normal file

File diff suppressed because it is too large Load Diff

1342
src/Version/Version42253.php Normal file

File diff suppressed because it is too large Load Diff

1349
src/Version/Version42932.php Normal file

File diff suppressed because it is too large Load Diff

1349
src/Version/Version43199.php Normal file

File diff suppressed because it is too large Load Diff

1349
src/Version/Version43478.php Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -61,9 +61,23 @@ class Versions {
34835 => 'Rogiel\StarReplay\Version\Version34835',
36442 => 'Rogiel\StarReplay\Version\Version36442',
38215 => 'Rogiel\StarReplay\Version\Version38215',
38535 => 'Rogiel\StarReplay\Version\Version38535',
38624 => 'Rogiel\StarReplay\Version\Version38624',
38749 => 'Rogiel\StarReplay\Version\Version38749',
38996 => 'Rogiel\StarReplay\Version\Version38996',
39576 => 'Rogiel\StarReplay\Version\Version39576'
39117 => 'Rogiel\StarReplay\Version\Version39117',
39576 => 'Rogiel\StarReplay\Version\Version39576',
39948 => 'Rogiel\StarReplay\Version\Version39948',
40384 => 'Rogiel\StarReplay\Version\Version40384',
40977 => 'Rogiel\StarReplay\Version\Version40977',
41128 => 'Rogiel\StarReplay\Version\Version41128',
41219 => 'Rogiel\StarReplay\Version\Version41219',
41743 => 'Rogiel\StarReplay\Version\Version41743',
41973 => 'Rogiel\StarReplay\Version\Version41973',
42253 => 'Rogiel\StarReplay\Version\Version42253',
42932 => 'Rogiel\StarReplay\Version\Version42932',
43199 => 'Rogiel\StarReplay\Version\Version43199',
43478 => 'Rogiel\StarReplay\Version\Version43478'
];
}