/// <param name="x">Position on the x axis</param>
 /// <param name="y">Position on the y axis</param>
 /// <param name="rayColor">The color of the symbol that will appear when drawn to raylib</param>
 /// <param name="icon">The symbol that will appear when drawn</param>
 /// <param name="color">The color of the symbol that will appear when drawn to the console</param>
 public Sun(float x, float y, Color rayColor, char icon = ' ', ConsoleColor color = ConsoleColor.White)
     : base(x, y, rayColor, icon, color)
 {
     _sprite = new Sprite("Images/sun.png");
 }