예제 #1
0
		private MoneyRecord(){
			user = User.Instance ();
		}
예제 #2
0
파일: User.cs 프로젝트: ZhHong/u3d_client
		public static User Instance(){
			if(user == null){
				user = new User ();
			}
			return user;
		}