Show / Hide Table of Contents

Struct SetupOptions

Options for a mod setup intro point, meaning a method with the Invoke attribute.

Namespace: DaggerfallWorkshop.Game.Utility.ModSupport
Assembly: Assembly-CSharp.dll
Syntax
public struct SetupOptions : IComparable<SetupOptions>

Constructors

| Improve this Doc View Source

SetupOptions(Int32, Mod, MethodInfo)

Declaration
public SetupOptions(int priority, Mod mod, MethodInfo mi)
Parameters
Type Name Description
Int32 priority
Mod mod
MethodInfo mi

Fields

| Improve this Doc View Source

mi

The method to be invoked.

Declaration
public readonly MethodInfo mi
Field Value
Type Description
MethodInfo
| Improve this Doc View Source

mod

The mod that found target method inside its assemblies.

Declaration
public readonly Mod mod
Field Value
Type Description
Mod
| Improve this Doc View Source

priority

The priority within invokable methods for the same mod.

Declaration
public readonly int priority
Field Value
Type Description
Int32

Methods

| Improve this Doc View Source

CompareTo(SetupOptions)

Compares methods for their priority.

Declaration
public int CompareTo(SetupOptions other)
Parameters
Type Name Description
SetupOptions other
Returns
Type Description
Int32
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX