Exemplo n.º 1
0
        static void Main(string[] args)
        {
            PrimaryPlayer player = PrimaryPlayer.Instance;

            Console.WriteLine($"{player.Name} -lvl {player.Level}");
            Console.ReadKey();;
        }
Exemplo n.º 2
0
 static PrimaryPlayer()
 {
     _instance = new PrimaryPlayer()
     {
         Name  = "Raptor",
         Level = 1
     };
 }