12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?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 Info_Task
- *
- * @author c'y'zhao
- */
- class Info_Task extends Object_ext{
- /**
- * 任务卡道具(存在叠加)
- * @var
- */
- public $taskcards;
-
- /**
- * 任务卡索引
- * @var type
- */
- public $taskIndex = 0;
-
- public function initialize() {
- $this->taskcards = new \stdClass();
- }
- public function __construct($arg = null) {
- if ($arg == null) {
- $this->taskcards = new \stdClass();
- } else {
- parent::__construct($arg);
- }
- }
- }
|