22 lines
		
	
	
		
			272 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			272 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#ifndef TERMINAL_H
 | 
						|
#define TERMINAL_H
 | 
						|
 | 
						|
#include <stdint.h>
 | 
						|
#include <string>
 | 
						|
 | 
						|
#ifndef STAND_ALONE
 | 
						|
#include <SDL.h>
 | 
						|
#endif
 | 
						|
 | 
						|
 | 
						|
namespace Terminal
 | 
						|
{
 | 
						|
    void initialise(void);
 | 
						|
 | 
						|
    void switchToTerminal(void);
 | 
						|
    void scrollToEnd(void);
 | 
						|
    
 | 
						|
    void process(void);
 | 
						|
}
 | 
						|
 | 
						|
#endif |