Loading .gitignoredeleted 100644 → 0 +0 −1 Original line number Diff line number Diff line yahtc .idea/.gitignore 0 → 100644 +8 −0 Original line number Diff line number Diff line # Default ignored files /shelf/ /workspace.xml # Editor-based HTTP Client requests /httpRequests/ # Datasource local storage ignored files /dataSources/ /dataSources.local.xml CMakeLists.txt 0 → 100644 +6 −0 Original line number Diff line number Diff line cmake_minimum_required(VERSION 3.31) project(yahtc C) set(CMAKE_C_STANDARD 11) add_executable(yahtc yaht.c graphics.c) graphics.c +2 −0 Original line number Diff line number Diff line Loading @@ -23,6 +23,8 @@ void print_multiple_dice(int *die_value, int n, int animated) { } // to only be called after print_multiple_dice() // todo this is a misnomer for this function: it doesn't clear anything, it just moves the cursor // (or make it actually clear, conditionally/otherwise) void clear_dice() { // move cursor up // for (int i = 0; i < DIE_VERTICAL_LENGTH + 1; i++) { Loading readme.mddeleted 100644 → 0 +0 −2 Original line number Diff line number Diff line # yahtc Loading
.idea/.gitignore 0 → 100644 +8 −0 Original line number Diff line number Diff line # Default ignored files /shelf/ /workspace.xml # Editor-based HTTP Client requests /httpRequests/ # Datasource local storage ignored files /dataSources/ /dataSources.local.xml
CMakeLists.txt 0 → 100644 +6 −0 Original line number Diff line number Diff line cmake_minimum_required(VERSION 3.31) project(yahtc C) set(CMAKE_C_STANDARD 11) add_executable(yahtc yaht.c graphics.c)
graphics.c +2 −0 Original line number Diff line number Diff line Loading @@ -23,6 +23,8 @@ void print_multiple_dice(int *die_value, int n, int animated) { } // to only be called after print_multiple_dice() // todo this is a misnomer for this function: it doesn't clear anything, it just moves the cursor // (or make it actually clear, conditionally/otherwise) void clear_dice() { // move cursor up // for (int i = 0; i < DIE_VERTICAL_LENGTH + 1; i++) { Loading