Initial commit

This commit is contained in:
2023-10-31 08:22:03 +01:00
commit f3474ff895
3 changed files with 15 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@@ -0,0 +1,3 @@
.idea/
cmake-build-debug/

6
CMakeLists.txt Normal file
View File

@@ -0,0 +1,6 @@
cmake_minimum_required(VERSION 3.26)
project(PixelDefense C)
set(CMAKE_C_STANDARD 11)
add_executable(PixelDefense main.c)

6
main.c Normal file
View File

@@ -0,0 +1,6 @@
#include <stdio.h>
int main() {
printf("Hello, World!\n");
return 0;
}