some-dungeon-game/class_dudestore.php

17 lines
214 B
PHP
Raw Permalink Normal View History

2021-03-18 19:58:26 +00:00
<?php
abstract class DudeStore
{
static private $dude;
static public function add(Dude $dude)
{
self::$dude = $dude;
}
static public function getDude()
{
return self::$dude;
}
}