diff options
author | Melanie Thielker | 2014-09-25 21:54:32 +0200 |
---|---|---|
committer | Melanie Thielker | 2014-09-25 21:54:32 +0200 |
commit | 546537c056ddc132a85b4bec774994a60aebbc5d (patch) | |
tree | ef58abe583e3dccb9d10a206699ead0306cda3fd | |
parent | Add the AnimationSet skel (diff) | |
download | opensim-SC_OLD-546537c056ddc132a85b4bec774994a60aebbc5d.zip opensim-SC_OLD-546537c056ddc132a85b4bec774994a60aebbc5d.tar.gz opensim-SC_OLD-546537c056ddc132a85b4bec774994a60aebbc5d.tar.bz2 opensim-SC_OLD-546537c056ddc132a85b4bec774994a60aebbc5d.tar.xz |
Rename = too generic
-rw-r--r-- | OpenSim/Framework/AnimationSet.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/AnimationSet.cs b/OpenSim/Framework/AnimationSet.cs index 8b6baab..c5ab634 100644 --- a/OpenSim/Framework/AnimationSet.cs +++ b/OpenSim/Framework/AnimationSet.cs | |||
@@ -31,7 +31,7 @@ using OpenMetaverse; | |||
31 | 31 | ||
32 | namespace OpenSim.Framework | 32 | namespace OpenSim.Framework |
33 | { | 33 | { |
34 | public delegate bool Validator(UUID animID); | 34 | public delegate bool AnimationSetValidator(UUID animID); |
35 | 35 | ||
36 | public class AnimationSet | 36 | public class AnimationSet |
37 | { | 37 | { |
@@ -76,7 +76,7 @@ namespace OpenSim.Framework | |||
76 | return new Byte[0]; | 76 | return new Byte[0]; |
77 | } | 77 | } |
78 | 78 | ||
79 | public bool Validate(Validator val) | 79 | public bool Validate(AnimationSetValidator val) |
80 | { | 80 | { |
81 | List<int> badAnims = new List<int>(); | 81 | List<int> badAnims = new List<int>(); |
82 | 82 | ||