I have tried everywhere but it seems the only way to contact you is on here, I have a few questions about your library I hope you can help me.
Can you explain how I could read a float like such
public static float[] Angles;
Angles = Program._memory.Read<float[]>((IntPtr)Base + Offsets.Offsets.m_angEyeAngles, false);
This will return
ArgumentException: Type 'System.Single[]' cannot be marshaled as an unmanaged structure; no meaningful size or offset can be computed.
However if I read it as a Vector3 it works fine.
Secondly could you explain how I can write data to a process?