Say I have a struct like
public struct pair{ float x,y;}
I want to create a constant lookup array of pairs inside a class, its also fixed number. Something like
public class MyClass{
static readonly fixed pair[7] _lookup;
}
I dont know how to declare nor initialize it(where do I set the values for each one?).