Advertisement
Guest User

Untitled

a guest
Nov 2nd, 2013
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.27 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Flocking
  4. {
  5.     public abstract class Goal
  6.     {
  7.         public enum State
  8.         {
  9.             Accomplished,
  10.             Failed,
  11.             InProgress
  12.         }
  13.        
  14.         public Goal()
  15.         {
  16.         }
  17.        
  18.         public abstract void Update(float dt);
  19.        
  20.         public abstract State GetState();
  21.     }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement