UNPKG
snake-cli-ts
Version:
latest (1.3.4)
1.3.4
Nodejs cli snake game
github.com/akcyp/snake-cli
akcyp/snake-cli
snake-cli-ts
/
lib
/
helpers
/
Point.js
11 lines
(10 loc)
•
236 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
var
Point
= (
function
(
) {
function
Point
(
x, y
) {
this
.
x
= x;
this
.
y
= y; }
return
Point
; }());
exports
.
default
=
Point
;