Fix license compliance and fix things up

This commit is contained in:
2026-07-31 18:51:17 -05:00
parent bd0587779e
commit 313e75b14c
149 changed files with 8310 additions and 5093 deletions

View File

@@ -0,0 +1,21 @@
#include "TessesFramework/TessesFramework.hpp"
int main(int argc, char **argv) {
using namespace Tesses::Framework;
TF_InitWithConsole();
Console::Write("Username: ");
std::string username = Console::ReadLine();
Console::Write("Password: ");
std::string password = Console::ReadPassword();
Console::WriteLine("Your username was: \"" + username + "\", " +
std::to_string(username.size()));
Console::WriteLine("Your password was: \"" + password + "\", " +
std::to_string(password.size()));
TF_RunEventLoop();
}