ПИ-21: практические примеры
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
413 B

3 years ago
namespace ConsoleDisplay.Driver.Virtual
{
internal class VirtualBulb
{
public VirtualBulb(
int x,
int y,
bool isEnabled = false)
{
X = x;
Y = y;
IsEnabled = isEnabled;
}
public int X { get; set; }
public int Y { get; set; }
public bool IsEnabled { get; set; }
}
}