the-lost-memory/project/addons/dialogic/Documentation/Content/FAQ/CSharp.md

14 lines
432 B
Markdown
Raw Normal View History

2022-11-17 17:52:05 +00:00
# Can I use C# with Dialogic?
Yes, but it's experimental at the present time. If you want to try it out, and you find issues with the implementation, please let us know.
Usage:
`public override void _Ready()
{
var dialog = DialogicSharp.Start("Greeting");
AddChild(dialog);
}
`
This is the PR that added this feature: [https://github.com/coppolaemilio/dialogic/pull/217](https://github.com/coppolaemilio/dialogic/pull/217)