Files
DesignPatternsPHP/Structural/Flyweight/FlyweightInterface.php
2015-02-02 15:36:32 +01:00

12 lines
219 B
PHP

<?php
namespace DesignPatterns\Structural\Flyweight;
/**
* An interface through which flyweights can receive and act on extrinsic state
*/
interface FlyweightInterface
{
public function draw($extrinsicState);
}