PositionedObjectList
Introduction
Common Usage
What types are stored in PositionedObjectLists
Example - Instantiating a PositionedObjectList in Code
// Add the following using statement
using FlatRedBall.Math;
// Here's how to make a list of Circles:
PositionedObjectList<Circle> circles = new PositionedObjectList<Circle>();
// And here's how to make one for Enemies (assuming you have an Enemy Entity):
PositionedObjectList<Enemy> enemies = new PositionedObjectList<Enemy>();Removing items from lists
Last updated
Was this helpful?