diff options
Diffstat (limited to 'OpenSim/Tools/pCampBot/Behaviours/NoneBehaviour.cs')
-rw-r--r-- | OpenSim/Tools/pCampBot/Behaviours/NoneBehaviour.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/OpenSim/Tools/pCampBot/Behaviours/NoneBehaviour.cs b/OpenSim/Tools/pCampBot/Behaviours/NoneBehaviour.cs index 9a3075c..4a7237c 100644 --- a/OpenSim/Tools/pCampBot/Behaviours/NoneBehaviour.cs +++ b/OpenSim/Tools/pCampBot/Behaviours/NoneBehaviour.cs | |||
@@ -43,5 +43,15 @@ namespace pCampBot | |||
43 | AbbreviatedName = "n"; | 43 | AbbreviatedName = "n"; |
44 | Name = "None"; | 44 | Name = "None"; |
45 | } | 45 | } |
46 | |||
47 | public override void Action() | ||
48 | { | ||
49 | m_interruptEvent.WaitOne(); | ||
50 | } | ||
51 | |||
52 | public override void Interrupt() | ||
53 | { | ||
54 | m_interruptEvent.Set(); | ||
55 | } | ||
46 | } | 56 | } |
47 | } \ No newline at end of file | 57 | } \ No newline at end of file |