..methods access inside class..
BlitzMax Forums/BlitzMax Programming/..methods access inside class..| 
 | ||
| ..how should i set methods of my choice, to be non accessible from outside of class  ?? Last edited 2011 | 
| 
 | ||
| Private methods? You can't. | 
| 
 | ||
| it seems that Private/Public doesn't work inside classes.. | 
| 
 | ||
| Indeed. It's a shame really. | 
| 
 | ||
| It is a shame but remember public/private members is just a compile-time check anyway, to keep you in line. I prefix private methods with "_" to show that they are private. Method _InternalStuff() |