aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tools/pCampBot/Interfaces/IBehaviour.cs
diff options
context:
space:
mode:
authorDan Lake2011-11-23 16:11:17 -0800
committerDan Lake2011-11-23 16:11:17 -0800
commit5485e3da460ae954acb225f1b7988b576226fb3a (patch)
tree7755fd14d85264ea8deac2a1d73e3b8eeb627673 /OpenSim/Tools/pCampBot/Interfaces/IBehaviour.cs
parentLine endings (diff)
parentPrint out what behaviours are active when pCampBot starts up (diff)
downloadopensim-SC_OLD-5485e3da460ae954acb225f1b7988b576226fb3a.zip
opensim-SC_OLD-5485e3da460ae954acb225f1b7988b576226fb3a.tar.gz
opensim-SC_OLD-5485e3da460ae954acb225f1b7988b576226fb3a.tar.bz2
opensim-SC_OLD-5485e3da460ae954acb225f1b7988b576226fb3a.tar.xz
Merge branch 'master' of git://opensimulator.org/git/opensim
Diffstat (limited to 'OpenSim/Tools/pCampBot/Interfaces/IBehaviour.cs')
-rw-r--r--OpenSim/Tools/pCampBot/Interfaces/IBehaviour.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/OpenSim/Tools/pCampBot/Interfaces/IBehaviour.cs b/OpenSim/Tools/pCampBot/Interfaces/IBehaviour.cs
index d4ae0f0..912216f 100644
--- a/OpenSim/Tools/pCampBot/Interfaces/IBehaviour.cs
+++ b/OpenSim/Tools/pCampBot/Interfaces/IBehaviour.cs
@@ -31,6 +31,15 @@ namespace pCampBot.Interfaces
31{ 31{
32 public interface IBehaviour 32 public interface IBehaviour
33 { 33 {
34 /// <summary>
35 /// Name of this behaviour.
36 /// </summary>
37 string Name { get; }
38
39 /// <summary>
40 /// Action to take when this behaviour is invoked.
41 /// </summary>
42 /// <param name="bot"></param>
34 void Action(Bot bot); 43 void Action(Bot bot);
35 } 44 }
36} \ No newline at end of file 45} \ No newline at end of file