Ejemplo n.º 1
0
        public void Points(int points)
        {
            PointEvent e = new PointEvent(points);

            OnPointEvent(e);
            e = new PointEvent(HUD.TimeLimit.Timer);
            OnPointEvent(e);
        }
Ejemplo n.º 2
0
        public void Points(int points)
        {
            PointEvent e = new PointEvent(points);

            OnPointEvent(e);
        }
Ejemplo n.º 3
0
 public void OnPointEvent(PointEvent args)
 {
     PointCollector(args);
 }
Ejemplo n.º 4
0
 public void AddPoints(PointEvent e)
 {
     Points += e.Points;
     Console.WriteLine("Points: " + Points);
 }