An error occurred while loading the file. Please try again.
-
FBeans authored
<?php
namespace App;
use App\World\Boid;
use App\World\World;
class Main
{
public function __construct()
{
}
public function run()
{
$world = new World(200, 200);
echo "New World Created. `{$world->name()}` ({$world->width()} x {$world->height()})." . PHP_EOL;
$boid = new Boid(5, 10, 10);
echo "New Boid Created. `{$boid->name()}` ({$boid->position()[0]}, {$boid->position()[1]})." . PHP_EOL;
}
}