Table of Contents

Delegate CVarValidtor<T>

Namespace
ReFuel.CVarScript
Assembly
ReFuel.dll

A delegate for validating CVars.

public delegate bool CVarValidtor<T>(CVar<T> cv, T value)

Parameters

cv CVar<T>

The CVar instance.

value T

The value to validate.

Returns

bool

True if the value is valid.

Type Parameters

T

The CVar type.