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'.

  1. static string mName;
  2. static int mFull = -1;
  3. static int mHints = -1;
  4. static int mWifi = -1;
  5. static int mExp = -1;
  6. 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.