Click or drag to resize

GameObjectManager.GetObjectsOfType<T> Method

Gets object of the specified type.

Namespace:  ff14bot.Managers
Assembly:  RebornBuddy (in RebornBuddy.exe) Version: 3.3.1; net-4.5.win32; release
Syntax
C#
public static IEnumerable<T> GetObjectsOfType<T>(
	bool allowInheritance = false,
	bool includeMeIfFound = false
)
where T : GameObject

Parameters

allowInheritance (Optional)
Type: System.Boolean
Indicates whether to also get objects that derives from the specified type (ie. WoWPlayer derives from WoWUnit, so specifying WoWUnit and true would also return all players).
includeMeIfFound (Optional)
Type: System.Boolean
Indicates whether to include the local player.

Type Parameters

T

Return Value

Type: IEnumerable<T>
See Also