| 123456789101112131415161718 |
- //-----------------------------------------------------------------------------
- // AlignBehavior.cs
- //
- // Microsoft XNA Community Game Platform
- // Copyright (C) Microsoft Corporation. All rights reserved.
- //-----------------------------------------------------------------------------
- using System;
- using System.Collections.Generic;
- using Microsoft.Xna.Framework;
- namespace Flocking
- {
- /// <summary>
- /// Container for Behavior Classes
- /// </summary>
- public class Behaviors : List<Behavior>
- {
- }
- }
|