diff options
author | Melanie | 2011-11-28 11:06:38 +0000 |
---|---|---|
committer | Melanie | 2011-11-28 11:06:38 +0000 |
commit | dc612d0f08ff8740c1942270f22eb79f0310c8fd (patch) | |
tree | 4c621d499eecbc176c6eb28a4bad4f8f4872e7f5 /OpenSim/Tools/pCampBot/Interfaces/IBehaviour.cs | |
parent | Merge branch 'master' into bigmerge (diff) | |
parent | Merge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff) | |
download | opensim-SC-dc612d0f08ff8740c1942270f22eb79f0310c8fd.zip opensim-SC-dc612d0f08ff8740c1942270f22eb79f0310c8fd.tar.gz opensim-SC-dc612d0f08ff8740c1942270f22eb79f0310c8fd.tar.bz2 opensim-SC-dc612d0f08ff8740c1942270f22eb79f0310c8fd.tar.xz |
Merge branch 'master' into bigmerge
Conflicts:
OpenSim/Region/Framework/Scenes/SceneObjectPartInventory.cs
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Tools/pCampBot/Interfaces/IBehaviour.cs | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/OpenSim/Tools/pCampBot/Interfaces/IBehaviour.cs b/OpenSim/Tools/pCampBot/Interfaces/IBehaviour.cs index 912216f..9c984be 100644 --- a/OpenSim/Tools/pCampBot/Interfaces/IBehaviour.cs +++ b/OpenSim/Tools/pCampBot/Interfaces/IBehaviour.cs | |||
@@ -37,9 +37,18 @@ namespace pCampBot.Interfaces | |||
37 | string Name { get; } | 37 | string Name { get; } |
38 | 38 | ||
39 | /// <summary> | 39 | /// <summary> |
40 | /// Initialize the behaviour for this bot. | ||
41 | /// </summary> | ||
42 | /// <remarks> | ||
43 | /// This must be invoked before Action() is called. | ||
44 | /// </remarks> | ||
45 | /// <param name="bot"></param> | ||
46 | void Initialize(Bot bot); | ||
47 | |||
48 | /// <summary> | ||
40 | /// Action to take when this behaviour is invoked. | 49 | /// Action to take when this behaviour is invoked. |
41 | /// </summary> | 50 | /// </summary> |
42 | /// <param name="bot"></param> | 51 | /// <param name="bot"></param> |
43 | void Action(Bot bot); | 52 | void Action(); |
44 | } | 53 | } |
45 | } \ No newline at end of file | 54 | } \ No newline at end of file |