2
0

Behaviors.cs 519 B

123456789101112131415161718
  1. //-----------------------------------------------------------------------------
  2. // AlignBehavior.cs
  3. //
  4. // Microsoft XNA Community Game Platform
  5. // Copyright (C) Microsoft Corporation. All rights reserved.
  6. //-----------------------------------------------------------------------------
  7. using System;
  8. using System.Collections.Generic;
  9. using Microsoft.Xna.Framework;
  10. namespace Flocking
  11. {
  12. /// <summary>
  13. /// Container for Behavior Classes
  14. /// </summary>
  15. public class Behaviors : List<Behavior>
  16. {
  17. }
  18. }