Skip to content
/ tuink Public

A minimalistic library for creating Immediate Mode Text User Interfaces

License

Notifications You must be signed in to change notification settings

lvntky/tuink

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

tuink - Immediate Mode Text User Interface Library

Version: v0.1.0 Author: Levent Kaya
License: MIT or Public Domain

Overview

tuink is a minimalistic library for creating Immediate Mode Text User Interfaces. It aims to provide a simple and easy-to-use interface for building text-based user interfaces in C.

Getting Started

This library is designed to be header-only. To use tuink in your project, simply include tuink.h in your source files.

Installation

Copy tuink.h to your project's include directory and include it in your source files.

Usage

To instantiate the implementation, define TUINK_IMPLEMENTATION in one source file before including tuink.h.

#define TUINK_IMPLEMENTATION
#include "tuink.h"

int main() {
    tuink_init();
    // Your code here
    tuink_cleanup();
    return 0;
}

Releases

No releases published

Packages

No packages published

Languages