Hi,
Say I have a custom class “person” and I want to make an array of objects of type person. How do I do that?
class Person{
var Age : int;
var Weight : float;
}
I want to know if it’s possible to have an array of type person and access the components like “ClassB_Students[index].Age”