mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 04:07:45 +00:00
Snake: Flesh out a basic snake game :^)
This commit is contained in:
parent
eca9494adf
commit
e24e486714
6 changed files with 196 additions and 9 deletions
|
@ -26,14 +26,14 @@
|
|||
#include <Kernel/Net/NetworkTask.h>
|
||||
#include <Kernel/Devices/DebugLogDevice.h>
|
||||
|
||||
//#define SPAWN_TERMINAL
|
||||
#define SPAWN_TERMINAL
|
||||
//#define SPAWN_LAUNCHER
|
||||
//#define SPAWN_GUITEST2
|
||||
//#define SPAWN_FILE_MANAGER
|
||||
//#define SPAWN_PROCESS_MANAGER
|
||||
//#define SPAWN_TEXT_EDITOR
|
||||
//#define SPAWN_FONTEDITOR
|
||||
#define SPAWN_VISUAL_BUILDER
|
||||
//#define SPAWN_VISUAL_BUILDER
|
||||
//#define SPAWN_MULTIPLE_SHELLS
|
||||
//#define STRESS_TEST_SPAWNING
|
||||
|
||||
|
|
|
@ -44,6 +44,8 @@ $make_cmd -C ../Applications/VisualBuilder clean && \
|
|||
$make_cmd -C ../Applications/VisualBuilder && \
|
||||
$make_cmd -C ../Games/Minesweeper clean && \
|
||||
$make_cmd -C ../Games/Minesweeper && \
|
||||
$make_cmd -C ../Games/Snake clean && \
|
||||
$make_cmd -C ../Games/Snake && \
|
||||
$make_cmd clean &&\
|
||||
$make_cmd && \
|
||||
sudo ./sync.sh
|
||||
|
|
|
@ -61,6 +61,8 @@ cp -v ../Applications/VisualBuilder/VisualBuilder mnt/bin/VisualBuilder
|
|||
ln -s VisualBuilder mnt/bin/vb
|
||||
cp -v ../Games/Minesweeper/Minesweeper mnt/bin/Minesweeper
|
||||
ln -s Minesweeper mnt/bin/ms
|
||||
cp -v ../Games/Snake/Snake mnt/bin/Snake
|
||||
ln -s Snake mnt/bin/sn
|
||||
cp -v kernel.map mnt/
|
||||
sh sync-local.sh
|
||||
umount mnt || ( sleep 0.5 && sync && umount mnt )
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue