battles/classes/ItemClass.php

18 lines
260 B
PHP
Raw Normal View History

2019-01-11 18:22:32 +02:00
<?php
/**
* Created by PhpStorm.
* User: Lopar
* Date: 11.01.2019
* Time: 18:21
*/
class ItemClass extends Item
{
2019-01-11 18:26:33 +02:00
/**
*
*/
2019-01-11 18:22:32 +02:00
public function printItemStats()
{
echo $this->name ." (Масса: ". $this->massa .")<br>";
}
}