16 lines
287 B
C#
Raw Permalink Normal View History

2025-01-25 04:38:09 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Thousandto.Code.Logic
{
public enum VoiceChannel
{
Exit, //无
Team, //队伍
Guild, //公会
Count,
}
}