MCPcopy Create free account
hub / github.com/StudioCherno/Coral / MemberMethod

Method MemberMethod

Example/Example.Managed/Source/Main.cs:44–56  ·  view source on GitHub ↗
(MyVec3 vec3)

Source from the content-addressed store, hash-verified

42 }
43
44 public void MemberMethod(MyVec3 vec3)
45 {
46 MyVec3 anotherVector = new()
47 {
48 X = 10,
49 Y = 20,
50 Z = 30
51 };
52
53 unsafe { VectorAddIcall(&vec3, &anotherVector); }
54
55 Console.WriteLine($"X: {vec3.X}, Y: {vec3.Y}, Z: {vec3.Z}");
56 }
57
58 public void StringDemo()
59 {

Callers

nothing calls this directly

Calls 1

VectorAddIcallFunction · 0.85

Tested by

no test coverage detected