ModelingDebug/ModelingMusic/Point.cs
2024-08-30 14:48:22 +08:00

24 lines
449 B
C#

namespace Debug.ModelingMusic;
public partial class Point
{
public ConsoleColor Color = Console.ForegroundColor;
public char Char = Program.ShowChar;
public Point()
{
int v = new Random().Next(0, 2);
switch (v)
{
case 0:
Color = ConsoleColor.Red;
break;
case 1:
Color = ConsoleColor.Blue;
break;
}
}
}