ConstructibleComponent Struct - ConstructibleObject

Revision as of 01:14, 16 October 2017 by imported>Qazaaq (Created page with "'''F4SE Member of:''' ConstructibleObject Script A structure that holds information about a Constructible Objects required item list entry. == S...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

F4SE Member of: ConstructibleObject Script

A structure that holds information about a Constructible Objects required item list entry.

Syntax

Struct ConstructibleComponent
	Component Object
	int Count
EndStruct

Members


Examples

ConstructibleObject:ConstructibleComponent constructibleComponent = new ConstructibleObject:ConstructibleComponent
constructibleComponent.Object = c_Gold
constructibleComponent.Count = 100

Debug.Trace("Object: " + constructibleComponent.Object)
Debug.Trace("Count: " + constructibleComponent.Count)

See Also