blob: 6593b1e7369fa25f0454591fcaea9f75e99109c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
using System;
using System.Collections.Generic;
namespace XMainClient
{
internal interface IFashionStorageSelect
{
bool Active { get; }
bool Select { get; set; }
bool ActivateAll { get; }
bool RedPoint { get; }
int GetID();
int GetCount();
void SetCount(uint count);
string GetName();
string GetLabel();
List<uint> GetItems();
uint[] GetFashionList();
List<AttributeCharm> GetAttributeCharm();
void Refresh();
}
}
|