mirror of
https://github.com/whoahq/whoa.git
synced 2026-03-18 05:31:07 +03:00
30 lines
600 B
C++
30 lines
600 B
C++
#ifndef CONSOLE_SCREEN_HPP
|
|
#define CONSOLE_SCREEN_HPP
|
|
|
|
#include "console/Types.hpp"
|
|
#include <storm/List.hpp>
|
|
|
|
class CGxString;
|
|
|
|
class CONSOLELINE : public TSLinkedNode<CONSOLELINE> {
|
|
public:
|
|
// Member variables
|
|
char* buffer;
|
|
uint32_t chars;
|
|
uint32_t charsalloc;
|
|
uint32_t inputpos;
|
|
uint32_t inputstart;
|
|
COLOR_T colorType;
|
|
CGxString* fontPointer;
|
|
|
|
// Member functions
|
|
~CONSOLELINE();
|
|
void Backspace();
|
|
};
|
|
|
|
void ConsoleScreenAnimate(float elapsedSec);
|
|
|
|
void ConsoleScreenInitialize(const char* title);
|
|
|
|
#endif
|