1
0

Revert "Delete unused boards"

This reverts commit 1b5c75c83d.
This commit is contained in:
Richard Baptist
2019-06-16 13:04:19 +02:00
parent a6b1f55659
commit 21fbcf145c
8065 changed files with 589315 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
#ifndef GAMENUM_H
#define GAMENUM_H
#include "quantum.h"
#define LAYOUT( \
k00, k01, k02, k03, \
k10, k11, k12, k13, \
k20, k21, k22, \
k30, k31, k32, \
k41, k42, k43 \
) \
{ \
{ k00, k01, k02, k03 }, \
{ k10, k11, k12, k13 }, \
{ k20, k21, k22, KC_NO }, \
{ k30, k31, k32, KC_NO }, \
{ KC_NO, k41, k42, k43 } \
}
#endif