You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Babushka/scripts/CSharp/mock/DialogicStarter.cs

16 lines
287 B

using System.Threading.Tasks;
namespace Babushka.scripts.CSharp.mock;
public static class DialogicStarter
{
public static async Task Dialog(string dialog)
{
// implement
}
public static void SetValue(string key, int value)
{
// implement
}
}