Table of Contents

Class Coordinates

Namespace
RustMapsApi.V4.Models
Assembly
RustMapsApi.dll

A position on the map grid.

public sealed record Coordinates : IEquatable<Coordinates>
Inheritance
Coordinates
Implements
Inherited Members

Constructors

Coordinates(int, int)

A position on the map grid.

public Coordinates(int X, int Y)

Parameters

X int

The X coordinate.

Y int

The Y coordinate.

Properties

X

The X coordinate.

public int X { get; init; }

Property Value

int

Y

The Y coordinate.

public int Y { get; init; }

Property Value

int