table.Inherit
Example
Example of how this function works.
local table1 = { "A", "Golden" }
local table2 = { "Two", "Orange", "Apple" }
table.Inherit( table1, table2 )
PrintTable( table1 )
Output:
1 = A
2 = Golden
3 = Apple
BaseClass:
1 = Two
2 = Orange
3 = Apple