<?php

error_reporting(-1);

class DiceGame 
{
    public $gameRounds = 0;
	public $aiPoints=0;
	public $playerPoints=0;
	
}

$game = new DiceGame;

echo $game->$playerPoints;


