Let's say i have
$this["uinameofdatablock"] = "something";
I can retrieve this information by doing
%thing = $this[%datablock.uiname];
Should i do it that way, or this way (when i create the datablock just toss the info in there)
datablock thingData(thing)
{
this = "something";
};
And retrieve it like this %datablock being the datablock of course
%thing =%datablock.this;
The info is simply just static information that won't change.. But which way do you guys think would be more efficient.. just wondering.