We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e11958 commit 37a7a1bCopy full SHA for 37a7a1b
manual/scripting/cpp/interfaces.md
@@ -84,7 +84,7 @@ DECLARE_SCRIPTING_TYPE(InterfaceInCpp);
84
auto interface = ToInterface<IMyInterface>(MyInterface);
85
if (interface)
86
{
87
- // Call interface method (with with both C++ and C# interface implementations)
+ // Call interface method (works with both C++ and C# interface implementations)
88
interface->GetSpeed(Vector3::One);
89
}
90
@@ -104,7 +104,7 @@ public class InterfaceInCSharp : Script, IMyInterface
104
var inter = MyInterface as IMyInterface;
105
if (inter != null)
106
107
108
inter.GetSpeed(Vector3.One);
109
110
0 commit comments