root/src/AIDemos/GameClasses/Soldier.cs

User picture

Author: conkerjo

Revision: 30 («Previous)


File Size: 368 Bytes

(July 08, 2009 19:40 UTC) Almost 3 years ago


  

 
Show/hide line numbers
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.Xna.Framework;
using Brains.Framework;

namespace AIDemos.GameClasses
{
    public class Soldier:GameActor
    {
        public Agent Target;
        public Soldier(Vector2 position,float radius):base(position,radius)
        {
        }
    }
}