diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/.name b/.idea/.name new file mode 100644 index 0000000..c38867f --- /dev/null +++ b/.idea/.name @@ -0,0 +1 @@ +info2Praktikum_Wortsalat \ No newline at end of file diff --git a/.idea/Wortsalat.iml b/.idea/Wortsalat.iml new file mode 100644 index 0000000..f08604b --- /dev/null +++ b/.idea/Wortsalat.iml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/.idea/editor.xml b/.idea/editor.xml new file mode 100644 index 0000000..ca29dcc --- /dev/null +++ b/.idea/editor.xml @@ -0,0 +1,101 @@ + + + + + \ No newline at end of file diff --git a/.idea/info2Praktikum-Wortsalat.iml b/.idea/info2Praktikum-Wortsalat.iml new file mode 100644 index 0000000..f08604b --- /dev/null +++ b/.idea/info2Praktikum-Wortsalat.iml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..0b76fe5 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,7 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..662b2dc --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..8306744 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..1db1a06 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,17 @@ +cmake_minimum_required(VERSION 4.0) +project(info2Praktikum_Wortsalat) + +set(CMAKE_C_STANDARD 11) + +include_directories(Start_Windows) + +add_executable(info2Praktikum_Wortsalat + Start_Windows/main.c + Start_Windows/game.c + Start_Windows/input.c + Start_Windows/main.c +) + +if(WIN32) + target_link_libraries(info2Praktikum_Wortsalat kernel32 user32 gdi32 winspool shell32 ole32 oleaut32 uuid comdlg32 advapi32) +endif() \ No newline at end of file diff --git a/Start_Windows/.idea/.gitignore b/Start_Windows/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/Start_Windows/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/Start_Windows/.idea/editor.xml b/Start_Windows/.idea/editor.xml new file mode 100644 index 0000000..963c96f --- /dev/null +++ b/Start_Windows/.idea/editor.xml @@ -0,0 +1,344 @@ + + + + + \ No newline at end of file diff --git a/Start_Windows/.idea/misc.xml b/Start_Windows/.idea/misc.xml new file mode 100644 index 0000000..53624c9 --- /dev/null +++ b/Start_Windows/.idea/misc.xml @@ -0,0 +1,18 @@ + + + + + + + + \ No newline at end of file diff --git a/Start_Windows/.idea/vcs.xml b/Start_Windows/.idea/vcs.xml new file mode 100644 index 0000000..6c0b863 --- /dev/null +++ b/Start_Windows/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Start_Windows/game.exe b/Start_Windows/game.exe new file mode 100644 index 0000000..5b7e699 Binary files /dev/null and b/Start_Windows/game.exe differ