This commit is contained in:
Gnieark 2016-07-11 20:49:17 +02:00
parent fe4d19eb56
commit 7b9346cb6b

View File

@ -1,6 +1,9 @@
<?php <?php
class Direction class Direction
{ {
private static $top = 0;
private static $bottom = 1;
private static $left = 2;
private static $right = 3;
} }