Пример простой консольной игры для студентов кафедры
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.

21 lines
261 B

using System;
namespace theGame
{
public class Item
{
public int positionX;
public int positionY;
public int sizeWidth;
public int sizeHeight;
public Item()
{
sizeWidth = 0;
sizeHeight = 0;
positionX = 0;
positionY = 0;
}
}
}