mirror of
https://github.com/TeamOctolings/Octobot.git
synced 2025-01-31 09:09:00 +03:00
8 lines
208 B
C#
8 lines
208 B
C#
|
namespace Boyfriend;
|
|||
|
|
|||
|
public static class Utils {
|
|||
|
public static string GetBeep() {
|
|||
|
var letters = new[] { "а", "о", "и"};
|
|||
|
return "Б" + letters[new Random().Next(3)] + "п! ";
|
|||
|
}
|
|||
|
}
|