-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPoint.cs
More file actions
59 lines (52 loc) · 1.17 KB
/
Point.cs
File metadata and controls
59 lines (52 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
using System;
using System.Collections.Generic;
using System.Text;
namespace ConsoleSnake
{
class Point
{
public int x;
public int y;
public char sym;
public Point()
{
}
public Point(int _x, int _y, char _sym)
{
x = _x;
y = _y;
sym = _sym;
}
public Point(Point p)
{
x = p.x;
y = p.y;
sym = p.sym;
}
public void Move(int offset, Direction direction)
{
if (direction == Direction.RIGHT)
x += offset;
if (direction == Direction.LEFT)
x -= offset;
if (direction == Direction.UP)
y -= offset;
if (direction == Direction.DOWN)
y += offset;
}
public void Draw()
{
Console.SetCursorPosition(x, y);
Console.Write(sym);
}
public void Clear()
{
sym = ' ';
Draw();
}
public bool IsHit(Point p)
{
return p.x == this.x && p.y == this.y;
}
}
}