diff options
Diffstat (limited to 'OpenSim/Region/Communications')
-rw-r--r-- | OpenSim/Region/Communications/OGS1/OGS1UserServices.cs | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs b/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs index 643d15b..dd7db62 100644 --- a/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs +++ b/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs | |||
@@ -547,5 +547,33 @@ namespace OpenSim.Region.Communications.OGS1 | |||
547 | } | 547 | } |
548 | 548 | ||
549 | #endregion | 549 | #endregion |
550 | |||
551 | /// Appearance | ||
552 | /// TODO: stubs for now to get us to a compiling state gently | ||
553 | public UserAppearance GetUserAppearance(LLUUID user) | ||
554 | { | ||
555 | return new UserAppearance(); | ||
556 | } | ||
557 | |||
558 | public void UpdateUserAppearance(LLUUID user, UserAppearance appearance) | ||
559 | { | ||
560 | return; | ||
561 | } | ||
562 | |||
563 | public void AddAttachment(LLUUID user, LLUUID item) | ||
564 | { | ||
565 | return; | ||
566 | } | ||
567 | |||
568 | public void RemoveAttachment(LLUUID user, LLUUID item) | ||
569 | { | ||
570 | return; | ||
571 | } | ||
572 | |||
573 | public List<LLUUID> GetAttachments(LLUUID user) | ||
574 | { | ||
575 | return new List<LLUUID>(); | ||
576 | } | ||
577 | |||
550 | } | 578 | } |
551 | } | 579 | } |