Skip to content

Latest commit

 

History

5 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 

Repository files navigation

ICN.cpp, a port of ICN to C++

How to use

  1. Import the icn.hpp file along with Raylib
#include "icn.hpp"
#include <raylib.h>
  1. Setup the window
int main() {
    InitWindow(800, 800, "ICN in C++ Example");
    Icn icn;
}
  1. Render the ICN of your preference (add script after window setup)
while (!WindowShouldClose()) {
    BeginDrawing();
    ClearBackground(BLACK);
    icn.render(R"()", { 400, 400 }, 10); // Code, Position, Size
    EndDrawing();
}

About

The ICN standard, ported to C++. Uses Raylib

Topics

Resources

Stars

1 star

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages