Question about Types and Resources

BlitzMax Forums/BlitzMax Beginners Area/Question about Types and Resources

bregors(Posted 2005) [#1]
.


tonyg(Posted 2005) [#2]
You'll use...
(memory for type definition) + (200*instance size)
and not
(memory for type definition + instance size) * 200


Azathoth(Posted 2005) [#3]
Functions belong to the type not the instance, you will have 200 copies of the virtual table though.


bregors(Posted 2005) [#4]
.