whats better - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: whats better (
/showthread.php?tid=651061)
whats better -
PepsiCola23 - 12.03.2018
to use
PHP код:
new Float:Cp[2][3] = {
or
PHP код:
new Float:Cp[][] = {
?
Re: whats better -
Sew_Sumi - 13.03.2018
Yea, it's personal preferences.
There's also
PHP код:
new Float:Cp[][3] = {
Re: whats better -
ISmokezU - 13.03.2018
They are not the same!
https://sampforum.blast.hk/showthread.php?tid=318212
It depends on your future inputs.
Re: whats better -
Sew_Sumi - 13.03.2018
Quote:
Originally Posted by ISmokezU
|
Can you highlight what in that thread 'applies'...