diff options
Diffstat (limited to 'src/GameBoy/Canvas/DrawContextInterface.php')
-rw-r--r-- | src/GameBoy/Canvas/DrawContextInterface.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/GameBoy/Canvas/DrawContextInterface.php b/src/GameBoy/Canvas/DrawContextInterface.php index 73f0c43..1666d92 100644 --- a/src/GameBoy/Canvas/DrawContextInterface.php +++ b/src/GameBoy/Canvas/DrawContextInterface.php @@ -7,12 +7,12 @@ namespace GameBoy\Canvas; */ interface DrawContextInterface { - /** + /** * Draw image on canvas * * @param Array $canvasBuffer Each pixel => 4 items on array (RGBA) * @param int $left * @param int $top */ - public function draw($canvasBuffer, $left, $top); -}
\ No newline at end of file + public function draw($canvasBuffer, $left, $top); +} |