Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
Turtle
0.1
Types/Turtle/get_Position.ps1
if
(
-not
$this
.
'.Position'
)
{
$this
|
Add-Member
-MemberType
NoteProperty
-Force
-Name
'.Position'
-Value
[pscustomobject]@
{
X
=
0
;
Y
=
0
}
}
return
$this
.
'.Position'