1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-09-13 18:17:57 +00:00

Games: Add Hearts

This commit is contained in:
Gunnar Beutner 2021-05-20 14:27:58 +02:00 committed by Andreas Kling
parent 3e47eec862
commit c3efae85f2
15 changed files with 965 additions and 1 deletions

View file

@ -0,0 +1,11 @@
compile_gml(Hearts.gml HeartsGML.h hearts_gml)
set(SOURCES
Game.cpp
main.cpp
Player.cpp
HeartsGML.h
)
serenity_app(Hearts ICON app-hearts)
target_link_libraries(Hearts LibCards LibGUI LibGfx LibCore)