| | 1 | | using System; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using System.Linq; |
| | 4 | | using DCL; |
| | 5 | |
|
| | 6 | | [Serializable] |
| | 7 | | public class WearableItemDummy : WearableItem |
| | 8 | | { |
| | 9 | | protected override ContentProvider CreateContentProvider(string baseUrl, MappingPair[] contents) |
| | 10 | | { |
| 4 | 11 | | return new ContentProvider_Dummy |
| | 12 | | { |
| | 13 | | baseUrl = baseUrl, |
| 8 | 14 | | contents = contents.Select(mapping => new ContentServerUtils.MappingPair() { file = mapping.key, hash = mapp |
| | 15 | | }; |
| | 16 | | } |
| | 17 | |
|
| 0 | 18 | | public WearableItemDummy Clone() { return (WearableItemDummy)MemberwiseClone(); } |
| | 19 | | } |