class_MaschineRoom.php
Go to the documentation of this file.00001 <?php
00024 class MaschineRoom extends BaseShipPart {
00025
00026 protected function __construct () {
00027
00028 parent::__construct(__CLASS__);
00029
00030
00031 $this->removeSystemArray();
00032 $this->removeNumberFormaters();
00033 }
00034
00035
00036 public final static function createMaschineRoom () {
00037
00038 $roomInstance = new MaschineRoom();
00039
00040
00041 $roomInstance->setResizeFactorElement('width' , 1.3);
00042 $roomInstance->setResizeFactorElement('height', 1.8);
00043 $roomInstance->setResizeFactorElement('length', 1.3);
00044
00045
00046 return $roomInstance;
00047 }
00048 }
00049
00050
00051 ?>