changed files to change name of project in codeblocks
This commit is contained in:
parent
c56b8f8d19
commit
0796688df7
8 changed files with 16 additions and 24 deletions
BIN
bin/Debug/blockBreaker
Executable file
BIN
bin/Debug/blockBreaker
Executable file
Binary file not shown.
BIN
bin/Debug/cTest
BIN
bin/Debug/cTest
Binary file not shown.
|
|
@ -2,12 +2,12 @@
|
||||||
<CodeBlocks_project_file>
|
<CodeBlocks_project_file>
|
||||||
<FileVersion major="1" minor="6" />
|
<FileVersion major="1" minor="6" />
|
||||||
<Project>
|
<Project>
|
||||||
<Option title="cTest" />
|
<Option title="blockBreaker" />
|
||||||
<Option pch_mode="2" />
|
<Option pch_mode="2" />
|
||||||
<Option compiler="gcc" />
|
<Option compiler="gcc" />
|
||||||
<Build>
|
<Build>
|
||||||
<Target title="Debug">
|
<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 object_output="obj/Debug/" />
|
||||||
<Option type="1" />
|
<Option type="1" />
|
||||||
<Option compiler="gcc" />
|
<Option compiler="gcc" />
|
||||||
|
|
@ -16,7 +16,7 @@
|
||||||
</Compiler>
|
</Compiler>
|
||||||
</Target>
|
</Target>
|
||||||
<Target title="Release">
|
<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 object_output="obj/Release/" />
|
||||||
<Option type="1" />
|
<Option type="1" />
|
||||||
<Option compiler="gcc" />
|
<Option compiler="gcc" />
|
||||||
9
blockBreaker.depend
Normal file
9
blockBreaker.depend
Normal 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>
|
||||||
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
<ActiveTarget name="Debug" />
|
<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">
|
<File name="main.c" open="1" top="1" tabpos="1" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
|
||||||
<Cursor>
|
<Cursor>
|
||||||
<Cursor1 position="1467" topLine="50" />
|
<Cursor1 position="4610" topLine="150" />
|
||||||
</Cursor>
|
</Cursor>
|
||||||
</File>
|
</File>
|
||||||
</CodeBlocks_layout_file>
|
</CodeBlocks_layout_file>
|
||||||
17
cTest.depend
17
cTest.depend
|
|
@ -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
6
main.c
|
|
@ -5,11 +5,11 @@
|
||||||
#include<unistd.h>
|
#include<unistd.h>
|
||||||
#include<stdbool.h>
|
#include<stdbool.h>
|
||||||
#define SCREEN_WIDTH 11
|
#define SCREEN_WIDTH 11
|
||||||
#define SCREEN_HEIGHT 20
|
#define SCREEN_HEIGHT 10
|
||||||
#define PADDLE_SIZE 1
|
#define PADDLE_SIZE 1
|
||||||
#define SLEEP_TIME_MS 100 * 1000
|
#define SLEEP_TIME_MS 100 * 1000
|
||||||
#define PADDLE_HEIGHT SCREEN_HEIGHT-4
|
#define PADDLE_HEIGHT SCREEN_HEIGHT-1
|
||||||
#define Y_BLOCK_LAYERS 10
|
#define Y_BLOCK_LAYERS 4
|
||||||
#define X_BLOCK_LAYERS SCREEN_WIDTH
|
#define X_BLOCK_LAYERS SCREEN_WIDTH
|
||||||
|
|
||||||
uint8_t screen[SCREEN_WIDTH][SCREEN_HEIGHT];
|
uint8_t screen[SCREEN_WIDTH][SCREEN_HEIGHT];
|
||||||
|
|
|
||||||
BIN
obj/Debug/main.o
BIN
obj/Debug/main.o
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue