root/src/BRAINSFramework/Behaviors/ISubBehaviorHolder.cs

User picture

Author: conkerjo

Revision: 30 («Previous)


File Size: 421 Bytes

(July 05, 2009 18:01 UTC) Almost 3 years ago

Behavior Refactoring

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

namespace Brains.Framework.Behaviors
{
    public interface ISubBehaviorHolder
    {
        BehaviorList<IBehavior> SubBehaviors { get; set; }
        int CurrentSubBehavior { get; set; }
        void OnSubBehaviorSuccess();
        void OnSubBehaviorFailure();
        
    }
}