All names should be prepended with : or something similar to make it easier to identify where variables and fncs come from
Classes should NOT be directly using vars defined in other classes without good reason. Either need a global state class (which is terrible), or access functions.
Note: having scoped named vars will help point out pain points
All names should be prepended with: or something similar to make it easier to identify where variables and fncs come from
Classes should NOT be directly using vars defined in other classes without good reason. Either need a global state class (which is terrible), or access functions.
Note: having scoped named vars will help point out pain points