1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 22:57:35 +00:00

Games: Add Spider

Scoring is designed to mimic Microsoft's implementation - starting at
500, decreasing by 1 every move, and increasing by 100 for every full
stack.

Fixes GH-5319.
This commit is contained in:
Jamie Mansfield 2021-06-16 01:37:29 +01:00 committed by Andreas Kling
parent b7e806e15e
commit 3f8857cd21
9 changed files with 676 additions and 0 deletions

View file

@ -0,0 +1,16 @@
serenity_component(
Spider
RECOMMENDED
TARGETS Spider
)
compile_gml(Spider.gml SpiderGML.h spider_gml)
set(SOURCES
Game.cpp
main.cpp
SpiderGML.h
)
serenity_app(Spider ICON app-spider)
target_link_libraries(Spider LibCards LibGUI LibGfx LibCore)