-
Notifications
You must be signed in to change notification settings - Fork 319
/
Copy pathm.yaml
1260 lines (1197 loc) · 29.2 KB
/
m.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
- name: Maelstrom
frameworks:
- SDL2
langs:
- C++
licenses:
- GPL2
content: open
development: sporadic
originals:
- Asteroids
repo: https://github.com/libsdl-org/Maelstrom
status: playable
type: remake
updated: 2023-03-12
url: https://www.libsdl.org/projects/Maelstrom/
video:
youtube: UQeSnOUqx-M
- name: MafiaUnity
development: halted
images:
- https://camo.githubusercontent.com/f4b404a3835816d734dada1f5c5f56cb4af04856/68747470733a2f2f692e696d6775722e636f6d2f3762316c6e367a2e6a7067
- https://camo.githubusercontent.com/c9e86d4d64e3406070dddc43e06c7c712ef8b0db/68747470733a2f2f692e696d6775722e636f6d2f41393256376d682e6a7067
- https://camo.githubusercontent.com/9a2b869f1361e636da5cdb2e9eace8c739bcfcda/68747470733a2f2f692e696d6775722e636f6d2f3678537a45334f2e6a7067
- https://camo.githubusercontent.com/d763033d60f221412887feaedac9e01d7380c1a8/68747470733a2f2f692e696d6775722e636f6d2f434f6f634467642e6a7067
langs:
- C++
licenses:
- GPL3
content: commercial
originals:
- Mafia
repo: https://github.com/MafiaHub/MafiaUnity
status: unplayable
type: remake
updated: 2023-06-04
- name: 'Mafia: Toolkit'
originals:
- Mafia II
- Mafia III
- 'Mafia: Definitive Edition'
type: tool
status: N/A
repo: 'https://github.com/Greavesy1899/Mafia2Toolkit'
feed: https://github.com/Greavesy1899/MafiaToolkit/releases.atom
development: active
langs:
- 'C#'
licenses:
- MIT
info: 'Modding tools such as a map editor, model exporter, material editor'
updated: 2023-07-30
video:
youtube: Hw44ayHVV90
- name: Magarena
langs:
- Java
licenses:
- GPL3
development: sporadic
originals:
- 'Magic: The Gathering Online'
repo: https://github.com/magarena/magarena
status: playable
type: clone
url: https://magarena.github.io/
updated: 2021-04-01
images:
- https://raw.githubusercontent.com/wiki/magarena/magarena/screenshots/maincombat.jpg
- https://raw.githubusercontent.com/wiki/magarena/magarena/screenshots/duel-decks.jpg
- https://raw.githubusercontent.com/wiki/magarena/magarena/screenshots/deck-editor-screen.jpg
- name: Magic Carpet 2 HD
type: remake
originals:
- Magic Carpet 2
repo: https://github.com/thobbsinteractive/magic-carpet-2-hd
feed: https://github.com/thobbsinteractive/magic-carpet-2-hd/releases.atom
development: sporadic
status: playable
langs:
- C++
frameworks:
- SDL2
licenses:
- GPL3
content: commercial
info: Continuation of remc2
updated: 2024-01-19
video:
youtube: NI3P7YXbcV8
- name: Magical Life
type: similar
originals:
- RimWorld
repo: https://github.com/TBye101/MagicalLife
development: halted
status: semi-playable
langs:
- C#
frameworks:
- MonoGame
- .NET
licenses:
- MIT
content: open
info: A fantasy world that imagines what a Rimworld style game could truly do if it had more elements in common with an RPG.
updated: 2023-09-18
video:
youtube: NV8WLheFxtM
- name: magiccarpet
langs:
- C++
licenses:
- As-is
development: halted
originals:
- Magic Carpet
status: unplayable
repo: https://github.com/wonea/magiccarpet
type: remake
updated: 2016-04-20
info: Automatically exported from code.google.com/p/magiccarpet
- name: Magnetar
originals:
- StarCraft
type: remake
content: commercial
status: playable
langs:
- C++
licenses:
- MIT
development: active
repo: https://github.com/joankaradimov/Magnetar
updated: 2022-08-15
- name: ManiaDrive
langs:
- C
- PHP
licenses:
- As-is
originals:
- TrackMania
status: playable
type: remake
updated: 2022-09-27
development: halted
url: http://maniadrive.raydium.org/
images:
- https://ftp.cqfd-corp.org/raycap2006-09-17-144630-00.jpg
- https://ftp.cqfd-corp.org/raycap2006-09-17-145551-00.jpg
- https://ftp.cqfd-corp.org/raycap2006-09-17-145421-00.jpg
- name: Manic Digger
images:
- https://manicdigger.github.io/images/release_2015-08-22.png
- https://manicdigger.sourceforge.net/wiki/images/2/2c/2010-07-09_17-25-25.png
- https://manicdigger.sourceforge.net/wiki/images/5/55/2010-07-06_20-51-58.png
langs:
- C#
frameworks:
- OpenGL
licenses:
- PD
content: open
development: halted
originals:
- Minecraft
status: playable
multiplayer:
- Online
repo: https://github.com/manicdigger/manicdigger
type: remake
updated: 2021-07-25
url: https://manicdigger.sourceforge.net
- name: Manic Miner PC
langs:
- BlitzBasic
licenses:
- Custom
originals:
- Manic Miner
status: playable
development: complete
type: remake
updated: 2018-10-05
url: https://retrospec.sgn.net/game/mm
images:
- https://retrospec.sgn.net/config/gamelogos/mm.gif
- name: Marble Madness 3d
langs:
- C++
licenses:
- LGPL2
frameworks:
- SDL
- OpenGL
development: halted
originals:
- Marble Madness
status: unplayable
repo: https://github.com/davido262/marble-madness-3d
type: remake
added: 2015-04-03
updated: 2021-11-08
- name: Marblez
frameworks:
- Unity
images:
- https://raw.githubusercontent.com/mpgossage/Marblez/master/screen1.png
- https://raw.githubusercontent.com/mpgossage/Marblez/master/screen2.png
- https://raw.githubusercontent.com/mpgossage/Marblez/master/screen3.png
langs:
- C#
licenses:
- MIT
originals:
- Toobz
repo: https://github.com/mpgossage/Marblez
development: halted
url: http://www.kongregate.com/games/MarkGossage/marblez/
status: playable
type: clone
updated: 2023-09-21
- name: Mari0
images:
- https://stabyourself.net/images/screenshots/mari0-1.png
- https://stabyourself.net/images/screenshots/mari0-2.png
- https://stabyourself.net/images/screenshots/mari0-3.png
- https://stabyourself.net/images/screenshots/mari0-4.png
- https://stabyourself.net/images/screenshots/mari0-5.png
langs:
- Lua
licenses:
- CC-BY-NC-SA
frameworks:
- "L\xD6VE"
originals:
- Mario World
status: playable
repo: https://github.com/Stabyourself/mari0
development: sporadic
type: remake
updated: 2019-11-20
url: https://stabyourself.net/mari0/
video:
youtube: SaoHMjS04vU
- name: Mario Objects
images:
- https://raw.githubusercontent.com/jazzyjester/Mario-Game/master/mario_level_1.png
- https://raw.githubusercontent.com/jazzyjester/Mario-Game/master/mario_level_2.png
- https://raw.githubusercontent.com/jazzyjester/Mario-Game/master/mario_level_3.png
- https://github.com/jazzyjester/Mario-Objects/raw/master/mario1.png
langs:
- C#
frameworks:
- .NET
licenses:
- MIT
development: halted
originals:
- Super Mario
status: playable
repo: https://github.com/jazzyjester/Mario-Game
type: clone
updated: 2022-10-27
- name: Max_Vita
originals:
- Max Payne
type: tool
status: N/A
repo: https://github.com/fgsfdsfgs/max_vita
development: halted
content: commercial
langs:
- C
licenses:
- MIT
info: A wrapper/port of the android version of Max Payne to the PS Vita
updated: 2023-09-22
video:
youtube: fVFf6xK9ZQg
- name: Maxit
images:
- https://a.fsdn.com/con/app/proj/maxit/screenshots/183592.jpg
- https://a.fsdn.com/con/app/proj/maxit/screenshots/183590.jpg
- https://a.fsdn.com/con/app/proj/maxit/screenshots/183588.jpg
langs:
- C++
licenses:
- BSD
development: halted
originals:
- Maxit
status: playable
repo: https://github.com/nurfalie/maxit
type: remake
updated: 2022-09-19
url: https://sourceforge.net/projects/maxit/
- name: Mayhem
originals:
- Mayhem
type: remake
repo: 'https://github.com/devpack/mayhem'
development: complete
status: playable
multiplayer:
- Competitive
- Local
- Split-screen
content: open
langs:
- C++
frameworks:
- Allegro
licenses:
- As-is
info: PC port
added: '2025-02-12'
updated: '2025-02-12'
images:
- 'https://raw.githubusercontent.com/devpack/mayhem/master/wiki/mayhem.jpg'
- name: Mayhem 2
originals:
- Mayhem
type: remake
repo: 'https://github.com/martinohanlon/mayhem'
url: 'https://www.stuffaboutcode.com/2016/06/mayhem-2-open-source-cave-shooter.html'
development: complete
status: playable
multiplayer:
- Competitive
- Local
- Split-screen
content: open
langs:
- C++
frameworks:
- Allegro
licenses:
- BSD
info: 'raspberry pi port also available at https://github.com/martinohanlon/mayhem-pi'
added: '2025-02-12'
updated: '2025-02-12'
images:
- 'https://github.com/martinohanlon/mayhem/blob/master/mayhem2.jpg?raw=true'
video:
youtube: Vxozz0Ijdr0
- name: mc2
langs:
- C++
frameworks:
- SDL2
licenses:
- GPL3
development: complete
originals:
- MechCommander 2
status: playable
repo: https://github.com/alariq/mc2
type: remake
updated: 2021-10-25
url: https://alariq.github.io/mc2-website/
images:
- https://alariq.github.io/mc2-website//images/devblog/day83_2017-03-12-010816_3841x1201_scrot.png
- name: Mechanized Assault & eXploration Reloaded
images:
- https://www.maxr.org/images/screenshots/01.jpg
- https://www.maxr.org/images/screenshots/02.jpg
- https://www.maxr.org/images/screenshots/03.jpg
- https://www.maxr.org/images/screenshots/04.jpg
- https://www.maxr.org/images/screenshots/05.jpg
- https://www.maxr.org/images/screenshots/06.jpg
- https://www.maxr.org/images/screenshots/07.jpg
- https://www.maxr.org/images/screenshots/08.jpg
- https://www.maxr.org/images/screenshots/09.jpg
- https://www.maxr.org/images/screenshots/10.jpg
- https://www.maxr.org/images/screenshots/11.jpg
- https://www.maxr.org/images/screenshots/12.jpg
- https://www.maxr.org/images/screenshots/13.jpg
- https://www.maxr.org/images/screenshots/14.jpg
langs:
- C++
frameworks:
- SDL2
licenses:
- GPL2
- CC-BY-SA
content: commercial
development: active
originals:
- M.A.X.
status: playable
repo: https://github.com/maxr-dot-org/maxr
type: remake
updated: 2023-09-23
url: https://www.maxr.org/
- name: MechCommander 2 Omnitech
langs:
- C++
licenses:
- MS-PL
content: free
development: halted
originals:
- MechCommander 2
status: playable
repo: https://github.com/Echelon9/mechcommander2-open
url: https://www.moddb.com/mods/mechcommander-omnitech
info: Mechcommander OmniTech is a standalone game based on Mechcommander 2 shared source code release by Microsoft.
type: remake
updated: 2022-03-08
video:
youtube: DhLSlGTGWCc
images:
- https://media.moddb.com/cache/images/mods/1/17/16982/thumb_620x2000/screen0006.1.jpg
- https://media.moddb.com/cache/images/mods/1/17/16982/thumb_620x2000/screen0005.1.jpg
- https://media.moddb.com/cache/images/mods/1/17/16982/thumb_620x2000/screen0004.2.jpg
- https://media.moddb.com/cache/images/mods/1/17/16982/thumb_620x2000/screen0003.4.jpg
- https://media.moddb.com/cache/images/mods/1/17/16982/thumb_620x2000/screen0002.4.jpg
- https://media.moddb.com/cache/images/mods/1/17/16982/thumb_620x2000/screen0001.5.jpg
- https://media.moddb.com/cache/images/mods/1/17/16982/thumb_620x2000/screen0000.3.jpg
- https://media.moddb.com/cache/images/mods/1/17/16982/thumb_620x2000/screen0002.3.jpg
- https://media.moddb.com/cache/images/mods/1/17/16982/thumb_620x2000/screen0009.jpg
- https://media.moddb.com/cache/images/mods/1/17/16982/thumb_620x2000/screen0008.jpg
- https://media.moddb.com/cache/images/mods/1/17/16982/thumb_620x2000/screen0004.1.jpg
- https://media.moddb.com/cache/images/mods/1/17/16982/thumb_620x2000/screen0003.3.jpg
- https://media.moddb.com/cache/images/mods/1/17/16982/thumb_620x2000/screen_newtruck2.jpg
- https://media.moddb.com/cache/images/mods/1/17/16982/thumb_620x2000/screen_newtruck.jpg
- name: Mega Mario
images:
- https://a.fsdn.com/con/app/proj/mmario/screenshots/206808.jpg
- https://a.fsdn.com/con/app/proj/mmario/screenshots/206814.jpg
- https://a.fsdn.com/con/app/proj/mmario/screenshots/206810.jpg
langs:
- C++
licenses:
- LGPL2
development: halted
originals:
- Super Mario
status: playable
type: remake
updated: 2014-04-16
url: https://sourceforge.net/projects/mmario/
- name: MegaGlest
images:
- https://megaglest.org/media/pics/a1.jpg
- https://megaglest.org/media/pics/a10.jpg
- https://megaglest.org/media/pics/a18.jpg
- https://megaglest.org/media/pics/a2.jpg
- https://megaglest.org/media/pics/a25.jpg
- https://megaglest.org/media/pics/a44.jpg
info: Various mods are available.
langs:
- C
- C++
licenses:
- GPL3
- CC-BY-SA
development: sporadic
originals:
- Glest
repo: https://github.com/MegaGlest/megaglest-source
status: playable
type: remake
updated: 2023-08-01
url: https://megaglest.org/
video:
youtube: zR6UIRQFFag
- name: Memoria
originals:
- Final Fantasy IX
type: remake
repo: 'https://github.com/Albeoris/Memoria'
development: complete
status: playable
content: commercial
langs:
- 'C#'
frameworks:
- Unity
licenses:
- MIT
updated: 2021-07-07
video:
youtube: cU4T3GSIjxs
- name: Meridian 59
langs:
- C++
- C
licenses:
- GPL2
development: active
status: playable
repo: https://github.com/Meridian59/Meridian59
type: official
updated: 2022-10-03
url: https://meridian59.com/
originals:
- Meridian 59
video:
youtube: y4O0yBrhiBY
- name: Meridian 59 German Server 112
langs:
- C
licenses:
- GPL2
development: halted
originals:
- Meridian 59
status: playable
repo: https://github.com/Arantis/Meridian59_112
type: remake
updated: 2016-03-16
url: https://meridian59.de
images:
- https://meridian59.de/images/1.jpg
- https://meridian59.de/images/2.jpg
- https://meridian59.de/images/3.jpg
- https://meridian59.de/images/4.jpg
- name: Meridian 59 Server 105
langs:
- C
licenses:
- GPL2
development: sporadic
originals:
- Meridian 59
status: playable
repo: https://github.com/OpenMeridian105/Meridian59_105_2.9
type: remake
updated: 2022-09-27
url: https://www.meridiannext.com
images:
- https://www.meridiannext.com/wp-content/uploads/2022/07/newarena_logo.png
- name: Metaforce
langs:
- C++
licenses:
- MIT
development: sporadic
originals:
- Metroid Prime
repo: 'https://github.com/AxioDL/metaforce'
type: remake
url: 'https://axiodl.com/'
status: unplayable
info: A reverse-engineered, native reimplementation of Metroid Prime
updated: '2023-07-28'
images:
- https://github.com/AxioDL/metaforce/blob/main/assets/metaforce-screen1.png?raw=true
- https://axiodl.com/images/hecl_hu25398d5c0d2da88c4a5221db09696c79_1724775_0x480_resize_bg292a2d_box_3.png
- https://axiodl.com/images/pwe_hu7c7bec678fa5eef23b41aaa434dfa04c_1742668_0x480_resize_bg292a2d_box_3.png
video:
youtube: uMwqpL2_-LY
- name: mewl
langs:
- C++
licenses:
- GPL2
development: halted
originals:
- M.U.L.E.
status: unplayable
repo: https://github.com/LionsPhil/mewl
type: remake
updated: 2015-09-21
- name: Mice Men Remix
frameworks:
- libGDX
langs:
- Java
licenses:
- LGPL3
development: complete
originals:
- Mice Men
repo: https://github.com/synkarius/micemen
status: playable
type: remake
updated: 2016-06-07
- name: Micropolis
langs:
- C++
- Python
licenses:
- GPL3
development: halted
originals:
- SimCity
status: playable
repo: https://github.com/SimHacker/micropolis
type: remake
updated: 2021-05-19
images:
- https://upload.wikimedia.org/wikipedia/commons/thumb/6/6d/Micropolis_-_big_city.png/640px-Micropolis_-_big_city.png
- https://micropolisonline.com/static/documentation/images/Micropolis_Facebook.png
- name: micropolisJS
langs:
- JavaScript
- TypeScript
licenses:
- GPL3
development: halted
originals:
- SimCity
status: playable
repo: https://github.com/graememcc/micropolisJS
type: remake
updated: 2023-09-24
url: https://www.graememcc.co.uk/micropolisJS/
images:
- https://www.freegameplanet.com/wp-content/uploads/2017/08/micropolisJS-game.gif
- name: Microracers
langs:
- C++
frameworks:
- SDL
licenses:
- GPL2
development: halted
originals:
- Micro Machines
status: semi-playable
repo: https://sourceforge.net/projects/microracers/
type: similar
updated: 2022-07-14
url: https://microracers.sourceforge.net/
- name: Mindustry
type: similar
originals:
- Factorio
repo: https://github.com/Anuken/Mindustry
url: https://mindustrygame.github.io/
development: very active
status: playable
multiplayer:
- LAN
- Online
langs:
- Java
frameworks:
- libGDX
licenses:
- GPL3
content: open
info: A sandbox tower defense game
updated: 2023-08-02
images:
- https://mindustrygame.github.io/1.d25af17a.webp
- https://mindustrygame.github.io/2.0d4f9a35.webp
- https://mindustrygame.github.io/3.88567664.webp
- name: Minecraft
originals:
- Minecraft
type: clone
repo: 'https://github.com/plane000/Minecraft'
development: halted
status: unplayable
content: free
langs:
- C++
frameworks:
- OpenGL
- SDL2
licenses:
- MIT
info: A Minecraft clone written in C++ with OpenGL
updated: 2023-09-26
images:
- https://i.imgur.com/UBiisxS.jpg
- name: MineCraft-One-Week-Challenge
type: clone
originals:
- Minecraft
repo: https://github.com/Hopson97/MineCraft-One-Week-Challenge
development: sporadic
status: semi-playable
langs:
- C++
frameworks:
- SFML
licenses:
- MIT
content: open
updated: 2023-09-27
images:
- https://camo.githubusercontent.com/897d01a707f6a117284446dffd45998c3a98aaef/687474703a2f2f692e696d6775722e636f6d2f6d7a557771506f2e706e67
video:
youtube: Xq3isov6mZ8
- name: minecraft-weekend
originals:
- Minecraft
type: clone
repo: 'https://github.com/jdah/minecraft-weekend'
development: complete
status: playable
langs:
- C
frameworks:
- OpenGL
licenses:
- MIT
updated: '2020-05-10'
video:
youtube: 4O0_-1NaWnY
- name: Mines
originals:
- Minesweeper
type: clone
repo: https://gitlab.gnome.org/GNOME/gnome-mines
url: https://wiki.gnome.org/Apps/Mines
development: very active
status: playable
content: free
langs:
- Vala
licenses:
- GPL3
updated: 2019-11-14
images:
- https://people.gnome.org/~mcatanzaro/gnome-mines.png
- name: Minesweeper
info: iOS
langs:
- F#
licenses:
- As-is
development: halted
originals:
- Minesweeper
status: unplayable
repo: https://github.com/rachelreese/Minesweeper
type: remake
updated: 2015-09-28
- name: Minesweeper (DouglasMeyer)
development: halted
frameworks:
- React
- Redux
langs:
- JavaScript
licenses:
- As-is
content: free
originals:
- Minesweeper
repo: https://github.com/DouglasMeyer/minesweeper
status: playable
type: remake
updated: 2016-02-06
url: https://www.douglas-meyer.name/minesweeper/
- name: Minesweeper (in C)
type: remake
originals:
- Minesweeper
status: playable
repo: https://github.com/brenns10/minesweeper
development: halted
langs:
- C
licenses:
- BSD
content: open
info: This is a command line minesweeper game in C.
updated: 2019-08-31
- name: Minesweeper (Vue.js)
originals:
- Minesweeper
type: clone
url: 'https://github.com/aashrafh/minesweeper'
development: complete
status: playable
langs:
- JavaScript
frameworks:
- Vue.js
licenses:
- As-is
updated: '2020-10-20'
images:
- 'https://github.com/aashrafh/minesweeper/raw/master/demo/minesweeper-1.png'
- 'https://github.com/aashrafh/minesweeper/raw/master/demo/minesweeper-2.png'
- 'https://github.com/aashrafh/minesweeper/raw/master/demo/minesweeper-3.png'
- 'https://github.com/aashrafh/minesweeper/raw/master/demo/minesweeper-4.png'
- name: minesweeper-rs
originals:
- Minesweeper
type: clone
repo: 'https://github.com/robmikh/minesweeper-rs'
development: sporadic
status: playable
content: open
langs:
- Rust
licenses:
- MIT
info: A port of robmikh/Minesweeper using winrt-rs
updated: '2020-10-11'
images:
- https://user-images.githubusercontent.com/7089228/80656536-45ac2c80-8a36-11ea-8521-ab40fc922ce1.gif
- name: Minesweeper.Zone
development: halted
images:
- https://minesweeper.zone/minesweeper.jpg
info: Open source JavaScript Minesweeper clone with high scores
langs:
- JavaScript
licenses:
- MIT
content: open
originals:
- Minesweeper
repo: https://github.com/reed-jones/minesweeper_js
status: playable
type: remake
updated: 2023-10-02
url: https://minesweeper.zone
- name: Minetest Game
development: very active
images:
- https://www.luanti.org/media/gallery/1.jpg
- https://www.luanti.org/media/gallery/2.jpg
- https://www.luanti.org/media/gallery/3.jpg
- https://www.luanti.org/media/gallery/4.jpg
- https://www.luanti.org/media/gallery/5.jpg
- https://www.luanti.org/media/gallery/6.jpg
- https://www.luanti.org/media/gallery/7.jpg
- https://www.luanti.org/media/gallery/8.jpg
langs:
- Lua
frameworks:
- Luanti
licenses:
- LGPL2
- CC-BY-SA
content: open
originals:
- Minecraft
status: playable
multiplayer:
- Online
- LAN
repo: https://github.com/minetest/minetest_game
info: Minetest Game (abbreviated MTG) is a simple and peaceful sandbox game, with no real goals or built-in enemy mobs.
type: similar
added: 2013-10-10
updated: 2025-01-08
url: https://www.luanti.org
feed: https://blog.luanti.org/feed.rss
- name: Minima
images:
- https://raw.githubusercontent.com/Feneric/Minima/master/MinimaWorld.png
- https://raw.githubusercontent.com/Feneric/Minima/master/MinimaTown.png
- https://raw.githubusercontent.com/Feneric/Minima/master/MinimaDungeon.png
langs:
- Lua
frameworks:
- PICO-8
licenses:
- GPL3
development: complete
originals:
- 'Ultima III: Exodus'
repo: https://github.com/Feneric/Minima
status: playable
type: clone
url: https://feneric.itch.io/minima
feed: https://feneric.itch.io/minima/devlog.rss
updated: 2023-10-04
- name: Mining Haze
images:
- https://a.fsdn.com/con/app/proj/mininghaze/screenshots/177162.jpg
- https://a.fsdn.com/con/app/proj/mininghaze/screenshots/177272.jpg
- https://a.fsdn.com/con/app/proj/mininghaze/screenshots/177625.jpg
- https://a.fsdn.com/con/app/proj/mininghaze/screenshots/177621.jpg
- https://a.fsdn.com/con/app/proj/mininghaze/screenshots/177623.jpg
langs:
- C
frameworks:
- ncurses
licenses:
- GPL2
development: halted
originals:
- Boulder Dash
status: playable
repo: https://sourceforge.net/projects/mininghaze/
type: remake
updated: 2022-07-15
- name: Mininim
langs:
- C
frameworks:
- Allegro
licenses:
- GPL3
development: halted
status: playable
content: open
originals:
- Prince of Persia
repo: https://github.com/oitofelix/mininim
type: remake
updated: 2017-01-12
url: https://oitofelix.github.io/mininim/
video:
youtube: 91QCqPMssj4
- name: Mirror Magic
langs:
- C
licenses:
- GPL2
development: halted
originals:
- Deflektor
status: playable
type: remake
updated: 2023-03-12
url: https://www.artsoft.org/mirrormagic/
images:
- https://www.artsoft.org/mirrormagic/screenshots/mainmenu.png
- https://www.artsoft.org/mirrormagic/screenshots/playing1.png
- https://www.artsoft.org/mirrormagic/screenshots/playing2.png
- https://www.artsoft.org/mirrormagic/screenshots/infoscreen.png
- https://www.artsoft.org/mirrormagic/screenshots/editor.png
- name: Missile Command
images:
- https://camo.githubusercontent.com/7e8455e7b2c909a2977815c861ab6bf9a053bee4/687474703a2f2f692e696d6775722e636f6d2f7747556a592e706e67
langs:
- Lua
licenses:
- As-is
development: halted
originals:
- Missile Command
repo: https://github.com/chadpaulson/missile-command
status: playable
type: remake
updated: 2014-08-16
url: https://github.com/chadpaulson/missile-command
video:
youtube: DviEWbUvv2Y
- name: mk.js
langs:
- JavaScript
licenses:
- MIT
development: halted