23.01.2012, 06:39
Quote:
|
Thanks for sharing it. I did some research on implementing object oriented programming on PAWN watching some C Programming Language book. I am pretty sure it can be implemented. Not only OOP but keywords such as virtual, explicit, struct, protected, etc.
|
The best you can really do is use macros to make a pseudo-OOP feel. Anyone who has real experience with the paradigm will never be satisfied with that though.
Edit: Also please note that C does not support object oriented programming. You can have object oriented programming concepts like polymorphism (which would be function pointers), and data encapsulation, but ultimately its not an OOP language.


