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.
16 lines
310 B
16 lines
310 B
namespace ClassLibrary1
|
|
{
|
|
/// <summary>
|
|
/// Крючок
|
|
/// X
|
|
/// Y
|
|
/// * Ключ
|
|
/// </summary>
|
|
public class CHook
|
|
{
|
|
public CHook() { }
|
|
public int X { get; set; }
|
|
public int Y { get; set; }
|
|
public CKey? Key { get; set; }
|
|
}
|
|
}
|