diff options
author | lbsa71 | 2008-03-28 19:58:45 +0000 |
---|---|---|
committer | lbsa71 | 2008-03-28 19:58:45 +0000 |
commit | ca718b6f8d5a76f4f4dcb6625c01c3ec15371bd6 (patch) | |
tree | 2115114e520a0ca0944e825e5928ab8a3dd310d0 /OpenSim/Framework/AvatarPickerAvatar.cs | |
parent | * Send full inventory folder skeleton to standalone client logins rather than... (diff) | |
download | opensim-SC-ca718b6f8d5a76f4f4dcb6625c01c3ec15371bd6.zip opensim-SC-ca718b6f8d5a76f4f4dcb6625c01c3ec15371bd6.tar.gz opensim-SC-ca718b6f8d5a76f4f4dcb6625c01c3ec15371bd6.tar.bz2 opensim-SC-ca718b6f8d5a76f4f4dcb6625c01c3ec15371bd6.tar.xz |
* Introduced common abstract UserDataBase provider
* Weeded out multiple AvatarPickerAvatar classes
Diffstat (limited to 'OpenSim/Framework/AvatarPickerAvatar.cs')
-rw-r--r-- | OpenSim/Framework/AvatarPickerAvatar.cs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/OpenSim/Framework/AvatarPickerAvatar.cs b/OpenSim/Framework/AvatarPickerAvatar.cs new file mode 100644 index 0000000..5f0de38 --- /dev/null +++ b/OpenSim/Framework/AvatarPickerAvatar.cs | |||
@@ -0,0 +1,14 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | using libsecondlife; | ||
5 | |||
6 | namespace OpenSim.Framework | ||
7 | { | ||
8 | public class AvatarPickerAvatar | ||
9 | { | ||
10 | public LLUUID AvatarID; | ||
11 | public string firstName; | ||
12 | public string lastName; | ||
13 | } | ||
14 | } | ||