Table of Contents

Class ContainerSize

Namespace
Moongate.UO.Data.Containers
Assembly
Moongate.UO.Data.dll

Represents the size and type of a container

public record ContainerSize : IEquatable<ContainerSize>
Inheritance
ContainerSize
Implements
Inherited Members

Constructors

ContainerSize(string, int, int, string)

Represents the size and type of a container

public ContainerSize(string Id, int Width, int Height, string Name)

Parameters

Id string
Width int
Height int
Name string

Properties

Bounds

public Rectangle2D Bounds { get; }

Property Value

Rectangle2D

Height

public int Height { get; init; }

Property Value

int

Id

public string Id { get; init; }

Property Value

string

Name

public string Name { get; init; }

Property Value

string

TotalSlots

public int TotalSlots { get; }

Property Value

int

Width

public int Width { get; init; }

Property Value

int