Select the types of activity you want to include in your feed.
1<?php 2 3class Position 4{ 5 public $y; 6 public $x; 7 8 public function __construct(int $y, int $x) 9 { 10 $this->y = $y; 11 $this->x = $x; 12 } 13}