When a property is declared, how is it initialized? Specifically for reference types, a lot of times I'll see a script has something like:
Keyword Property SomeThingHere auto
RefCollectionAlias Property SomeDudesHere auto mandatory
and then later in a function it's just used, and I can't find where it's initially set.
SomeDudesHere.GetCount() ; why is this not a null reference?