Table of Contents

Interface IScriptContext<TData>

Namespace
RisingV.Scripting
Assembly
RisingV.Scripting.dll

Represents the context in which a script is executed, with a specific data type.

public interface IScriptContext<out TData> : IScriptContext

Type Parameters

TData

The type of data associated with the script context.

Inherited Members
Extension Methods

Properties

Data

Gets the data associated with the script context. This could be any type of data that the script needs to operate on, such as command context, event data, or other relevant information.

TData Data { get; }

Property Value

TData