Class Marker
- Namespace
- RustPlusApi.Data.Markers
- Assembly
- RustPlusApi.dll
Base record for all map markers, carrying the shared id and map coordinates.
public record Marker : IEquatable<Marker>
- Inheritance
-
Marker
- Implements
- Derived
- Inherited Members
Properties
Id
Unique marker identifier assigned by the server.
public ulong? Id { get; init; }
Property Value
X
Horizontal map coordinate (west โ east).
public float? X { get; init; }
Property Value
Y
Vertical map coordinate (south โ north).
public float? Y { get; init; }