Tasharen Entertainment Forum
Support => NGUI 3 Support => Topic started by: schellenberghq on August 21, 2013, 10:06:05 AM
Title:
Variable Names
Post by:
schellenberghq
on
August 21, 2013, 10:06:05 AM
I'm just wondering why variable names are named as such:
I see this a lot in NGUI source, the variable starts with 'm'.
static
string
mName
;
static
int
mFull
=
-
1
;
static
int
mHints
=
-
1
;
static
int
mWifi
=
-
1
;
static
int
mExp
=
-
1
;
static
int
mPowerSaving
=
-
1
;
Title:
Re: Variable Names
Post by:
ArenMook
on
August 21, 2013, 10:11:20 AM
'm' for 'member', as in private member variable.