wootook-reloaded/includes/application/code/community/Legacies/Empire/Model/Builder/Item.php
Gregory PLANCHAT 66875791e6 Created generic building queue
Updated ORM

Signed-off-by: Gregory PLANCHAT <g.planchat@gmail.com>
2011-06-19 11:34:43 +02:00

19 lines
No EOL
288 B
PHP

<?php
class Legacies_Empire_Model_Builder_Item
extends Legacies_Object
{
protected $_index = null;
public function getIndex()
{
return $this->_index;
}
public function setIndex($index)
{
$this->_index = $index;
return $this;
}
}