wootook-reloaded/includes/application/code/community/Legacies/Empire/Model/Planet/Resource.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

20 lines
No EOL
380 B
PHP

<?php
/**
*
* @uses Legacies_Object
* @uses Legacies_Empire
* @uses Legacies_Empire_User
*/
class Legacies_Empire_Model_Planet_Resource
extends Legacies_Core_Entity_SubTable
{
public function _init()
{
$this->_tableName = 'planet_resource';
$this->_idFieldNames = array(
'resource_code',
'planet_id'
);
}
}