battles/classes/ItemClass.php
Igor Barkov [iwork] 642fb82938 tests
2019-01-11 18:26:33 +02:00

18 lines
260 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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