16 lines
287 B
C#
16 lines
287 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Thousandto.Code.Logic
|
|
{
|
|
public enum VoiceChannel
|
|
{
|
|
Exit, //无
|
|
Team, //队伍
|
|
Guild, //公会
|
|
Count,
|
|
}
|
|
}
|