DesignPatternsPHP/Structural/Flyweight/FlyweightInterface.php

12 lines
217 B
PHP
Raw Normal View History

2015-02-02 00:11:48 +01:00
<?php
namespace DesignPatterns\Structural\Flyweight;
/**
* An interface through which flyweights can receive and act on extrinsic state
*/
interface FlyweightInterface {
public function draw($extrinsicState);
}