blob: 1ddb10a0c4faab54e6ae5194d812dbe65d0e8f26 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
using System;
using ProtoBuf;
namespace KKSG
{
[ProtoContract(Name = "ArtifactComposeType")]
public enum ArtifactComposeType
{
[ProtoEnum(Name = "ArtifactCompose_Single", Value = 1)]
ArtifactCompose_Single = 1,
[ProtoEnum(Name = "ArtifactCompose_Multi", Value = 2)]
ArtifactCompose_Multi
}
}
|