ModelingDebug/ModelingMusic/Point.cs

24 lines
449 B
C#
Raw Normal View History

2024-08-25 09:55:05 +00:00

namespace Debug.ModelingMusic;
public partial class Point
{
public ConsoleColor Color = Console.ForegroundColor;
2024-08-30 06:48:22 +00:00
public char Char = Program.ShowChar;
2024-08-25 09:55:05 +00:00
public Point()
{
int v = new Random().Next(0, 2);
switch (v)
{
case 0:
Color = ConsoleColor.Red;
break;
case 1:
Color = ConsoleColor.Blue;
break;
}
}
}