PlayerPrefsUtil.IntToBool C# (CSharp) Method

IntToBool() static private method

static private IntToBool ( int value ) : bool
value int
return bool
	static bool IntToBool (int value) {
		return ! (value == 0);
	}