- Anem per la linea 1550 de la passada 1 (sintaxis)

This commit is contained in:
2024-01-24 14:46:56 +01:00
parent eaa6b01808
commit 433136c46a
5 changed files with 974 additions and 993 deletions

5
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,5 @@
{
"files.associations": {
"algorithm": "cpp"
}
}

11
crt.cpp Normal file
View File

@@ -0,0 +1,11 @@
#include "crt.h"
#include <time.h>
uint8_t get_hours()
{
time_t t;
struct tm *tm;
time (&t);
tm = localtime (&t);
return tm->tm_hour;
}

5
crt.h
View File

@@ -0,0 +1,5 @@
#pragma once
#include <SDL2/SDL.h>
uint8_t get_hours();

View File

@@ -1 +1,3 @@
#pragma once
bool TeclaPuls(uint8_t tecla);

File diff suppressed because it is too large Load Diff