mirror of
https://github.com/tiennm99/godot.git
synced 2026-06-29 05:12:03 +00:00
995a40e8ef
Added dummy MSBuild project and solution to get tooling help when editing these files.
13 lines
193 B
C#
13 lines
193 B
C#
namespace Godot
|
|
{
|
|
public interface IAwaitable
|
|
{
|
|
IAwaiter GetAwaiter();
|
|
}
|
|
|
|
public interface IAwaitable<out TResult>
|
|
{
|
|
IAwaiter<TResult> GetAwaiter();
|
|
}
|
|
}
|