2023-11-02 11:30:48 +00:00
|
|
|
|
namespace BiblioTech
|
|
|
|
|
{
|
|
|
|
|
public static class RandomBusyMessage
|
|
|
|
|
{
|
|
|
|
|
private static readonly Random random = new Random();
|
|
|
|
|
private static readonly string[] messages = new[]
|
|
|
|
|
{
|
|
|
|
|
"Working on it...",
|
|
|
|
|
"Doing that...",
|
|
|
|
|
"Hang on...",
|
|
|
|
|
"Making it so...",
|
|
|
|
|
"Reversing the polarity...",
|
|
|
|
|
"Factoring the polynomial...",
|
|
|
|
|
"Analyzing the wavelengths...",
|
|
|
|
|
"Charging the flux-capacitor...",
|
|
|
|
|
"Jumping to hyperspace...",
|
|
|
|
|
"Computing the ultimate answer..."
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
public static string Get()
|
|
|
|
|
{
|
2023-12-18 12:32:58 +00:00
|
|
|
|
return "(⏳): " + messages[random.Next(messages.Length)];
|
2023-11-02 11:30:48 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|