2 Усложненная лабораторная

This commit is contained in:
kagbie3nn@mail.ru 2023-12-08 20:11:00 +04:00
parent 95d45bc199
commit dd65769c19
4 changed files with 1 additions and 13 deletions

View File

@ -11,10 +11,6 @@ namespace ProjectWarmlyShip
private NumDecks numDecks; private NumDecks numDecks;
public int SomeProperty public int SomeProperty
{ {
get
{
return SomeProperty;
}
set set
{ {
switch (value) switch (value)

View File

@ -12,10 +12,6 @@ namespace ProjectWarmlyShip
public int SomeProperty public int SomeProperty
{ {
get
{
return SomeProperty;
}
set set
{ {
switch (value) switch (value)

View File

@ -11,10 +11,6 @@ namespace ProjectWarmlyShip
private NumDecks numDecks; private NumDecks numDecks;
public int SomeProperty public int SomeProperty
{ {
get
{
return SomeProperty;
}
set set
{ {
switch (value) switch (value)

View File

@ -8,7 +8,7 @@ namespace ProjectWarmlyShip
{ {
public interface IDrawingDecks public interface IDrawingDecks
{ {
int SomeProperty { get; set; } int SomeProperty { set;}
void Draw(int _startPosX, int _startPosY, Color Os, Graphics g); void Draw(int _startPosX, int _startPosY, Color Os, Graphics g);
} }
} }