TomatenMusic-V2/TomatenMusicCore/Prompt/Model/PromptState.cs

16 lines
212 B
C#
Raw Permalink Normal View History

2022-03-29 22:12:22 +02:00
using System;
using System.Collections.Generic;
using System.Text;
namespace TomatenMusic.Prompt.Model
{
enum PromptState
{
PREPARED,
OPEN,
INVALID,
RESPONDED
}
}