mirror of
				https://gitea.windcorp.ru/Wind-Corporation/Progressia.git
				synced 2025-10-31 08:30:37 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			287 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			287 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include "rendering.h"
 | |
| #include "util.h"
 | |
| 
 | |
| namespace progressia::main {
 | |
| 
 | |
| class Game : private NonCopyable {
 | |
|   public:
 | |
|     virtual ~Game() = default;
 | |
|     virtual void renderTick() = 0;
 | |
| };
 | |
| 
 | |
| std::unique_ptr<Game> makeGame(GraphicsInterface &);
 | |
| 
 | |
| } // namespace progressia::main
 |