Is it an object-oriented programming?

BlitzMax Forums/BlitzMax Programming/Is it an object-oriented programming?

Yue(Posted April) [#1]
' Iluminacion
sol:TLuz = CreateSun()
sol.SetColor()
sol.SetAmbientLight(64, 64, 64)
sol.SetRotX(45)
sol.SetRotY(45) 
 




col(Posted April) [#2]
Yes.


Yue(Posted April) [#3]
Col, I think he finally learned something. :D

And I managed to make clear the difference between Blitz3D and BlitzMax ..


col(Posted April) [#4]
Well done!

It's a good feeling when you understand something new.

Have fun :O)


TomToad(Posted April) [#5]
One of the best tutorials for OOP comes from this link
http://www.blitzbasic.com/Community/posts.php?topic=59233
Unfortunately, the web site that hosted the pdf is gone, but Brucey has managed to save the pdf file and has it for us here.
http://brucey.net/programming/blitz/misc/library/BlitzMax_OOP_Tutorial.pdf

Well worth the read.


mingw(Posted May) [#6]
sol:TLuz = CreateSun()


sol:TLuz = New TLuz