diff options
author | Melanie | 2011-11-24 00:54:52 +0100 |
---|---|---|
committer | Melanie | 2011-11-24 00:54:52 +0100 |
commit | 11dfd7711bd6b053d291cfa10417919ae8d7d877 (patch) | |
tree | 1dedbee5d61d6c708852ff87e6d0e7342cbc63ac /OpenSim/Tools/pCampBot/Interfaces | |
parent | Merge branch 'bigmerge' of ssh://3dhosting.de/var/git/careminster into bigmerge (diff) | |
parent | Merge branch 'master' into bigmerge (diff) | |
download | opensim-SC-11dfd7711bd6b053d291cfa10417919ae8d7d877.zip opensim-SC-11dfd7711bd6b053d291cfa10417919ae8d7d877.tar.gz opensim-SC-11dfd7711bd6b053d291cfa10417919ae8d7d877.tar.bz2 opensim-SC-11dfd7711bd6b053d291cfa10417919ae8d7d877.tar.xz |
Merge branch 'bigmerge' of ssh://3dhosting.de/var/git/careminster into bigmerge
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Tools/pCampBot/Interfaces/IBehaviour.cs | 9 |
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 |