41c50bb653
* Change keyboard level include guards to `pragma once` And clean up a lot of layout macros * Oops * Remove dangling endif
14 lines
186 B
C
14 lines
186 B
C
#pragma once
|
|
|
|
#include "quantum.h"
|
|
|
|
#define LAYOUT( \
|
|
k00, k10, k20, k30, k40, k50 \
|
|
) { \
|
|
{ k00 }, \
|
|
{ k10 }, \
|
|
{ k20 }, \
|
|
{ k30 }, \
|
|
{ k40 }, \
|
|
{ k50 } \
|
|
}
|