Table of Contents

Enum ServerComponentInitializationStatus

Namespace
FishMMO.Server.Core
Assembly
FishMMO.Server.dll

Enumeration representing the initialization status of server components (behaviours, data containers, etc.). Generic status enum used across all server component types.

public enum ServerComponentInitializationStatus

Fields

AlreadyInitialized = 2

The server component was already initialized.

FailedToFindRequiredDependency = 6

The server component failed to find a required dependency.

FailedToFindServer = 4

The server component failed to find the server instance.

FailedToFindServerManager = 5

The server component failed to find the server manager instance.

FailedToGetDataContainer = 7

The server component failed to get a data container.

FailedToGetDbContext = 8

The server component failed to get a database context.

InitializationFailed = 3

The server component failed to initialize.

Initialized = 1

The server component has been successfully initialized.

NotInitialized = 0

The server component has not been initialized.