31 lines
		
	
	
	
		
			622 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
	
		
			622 B
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
This file is part of Telegram Desktop,
 | 
						|
the official desktop application for the Telegram messaging service.
 | 
						|
 | 
						|
For license and copyright information please follow this link:
 | 
						|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
 | 
						|
*/
 | 
						|
#pragma once
 | 
						|
 | 
						|
namespace Ui {
 | 
						|
 | 
						|
class GenericBox;
 | 
						|
 | 
						|
struct BoostCounters {
 | 
						|
	int level = 0;
 | 
						|
	int boosts = 0;
 | 
						|
	int thisLevelBoosts = 0;
 | 
						|
	int nextLevelBoosts = 0; // Zero means no next level is available.
 | 
						|
};
 | 
						|
 | 
						|
struct BoostBoxData {
 | 
						|
	QString name;
 | 
						|
	BoostCounters boost;
 | 
						|
};
 | 
						|
 | 
						|
void BoostBox(
 | 
						|
	not_null<GenericBox*> box,
 | 
						|
	BoostBoxData data,
 | 
						|
	Fn<void(Fn<void(bool)>)> boost);
 | 
						|
 | 
						|
} // namespace Ui
 |