Table of Contents

Class MapGenerationStat

Namespace
RustMapsApi.V4.Models
Assembly
RustMapsApi.dll

A usage counter against an allowance.

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

Constructors

MapGenerationStat(int, int)

A usage counter against an allowance.

public MapGenerationStat(int Current, int Allowed)

Parameters

Current int

The amount used.

Allowed int

The maximum allowed.

Properties

Allowed

The maximum allowed.

public int Allowed { get; init; }

Property Value

int

Current

The amount used.

public int Current { get; init; }

Property Value

int