changed files to change name of project in codeblocks

This commit is contained in:
Seth Samuel 2024-10-15 15:20:58 +13:00
parent c56b8f8d19
commit 0796688df7
8 changed files with 16 additions and 24 deletions

BIN
bin/Debug/blockBreaker Executable file

Binary file not shown.

Binary file not shown.

View file

@ -2,12 +2,12 @@
<CodeBlocks_project_file>
<FileVersion major="1" minor="6" />
<Project>
<Option title="cTest" />
<Option title="blockBreaker" />
<Option pch_mode="2" />
<Option compiler="gcc" />
<Build>
<Target title="Debug">
<Option output="bin/Debug/cTest" prefix_auto="1" extension_auto="1" />
<Option output="bin/Debug/blockBreaker" prefix_auto="1" extension_auto="1" />
<Option object_output="obj/Debug/" />
<Option type="1" />
<Option compiler="gcc" />
@ -16,7 +16,7 @@
</Compiler>
</Target>
<Target title="Release">
<Option output="bin/Release/cTest" prefix_auto="1" extension_auto="1" />
<Option output="bin/Release/blockBreaker" prefix_auto="1" extension_auto="1" />
<Option object_output="obj/Release/" />
<Option type="1" />
<Option compiler="gcc" />

9
blockBreaker.depend Normal file
View file

@ -0,0 +1,9 @@
# depslib dependency file v1.0
1728643125 source:/home/fluffy/codeBlocks/blockBreaker/main.c
<stdio.h>
<stdlib.h>
<stdint.h>
<time.h>
<unistd.h>
<stdbool.h>

View file

@ -4,7 +4,7 @@
<ActiveTarget name="Debug" />
<File name="main.c" open="1" top="1" tabpos="1" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
<Cursor>
<Cursor1 position="1467" topLine="50" />
<Cursor1 position="4610" topLine="150" />
</Cursor>
</File>
</CodeBlocks_layout_file>

View file

@ -1,17 +0,0 @@
# depslib dependency file v1.0
1727778794 source:/home/fluffy/codeBlocks/cTest/main.c
<stdio.h>
<stdlib.h>
<stdint.h>
<time.h>
<unistd.h>
<stdbool.h>
1728641201 source:/home/fluffy/codeBlocks/blockBreaker/main.c
<stdio.h>
<stdlib.h>
<stdint.h>
<time.h>
<unistd.h>
<stdbool.h>

6
main.c
View file

@ -5,11 +5,11 @@
#include<unistd.h>
#include<stdbool.h>
#define SCREEN_WIDTH 11
#define SCREEN_HEIGHT 20
#define SCREEN_HEIGHT 10
#define PADDLE_SIZE 1
#define SLEEP_TIME_MS 100 * 1000
#define PADDLE_HEIGHT SCREEN_HEIGHT-4
#define Y_BLOCK_LAYERS 10
#define PADDLE_HEIGHT SCREEN_HEIGHT-1
#define Y_BLOCK_LAYERS 4
#define X_BLOCK_LAYERS SCREEN_WIDTH
uint8_t screen[SCREEN_WIDTH][SCREEN_HEIGHT];

Binary file not shown.