4f788c2ae9
* Xulkal user changes Xulkal user changes * Reduce code duplication * Massive user code refactor
18 lines
284 B
C
18 lines
284 B
C
#pragma once
|
|
#include "quantum.h"
|
|
#include "custom_tap_dance.h"
|
|
|
|
enum layer_number {
|
|
_QWERTY = 0,
|
|
#ifndef GAMELAYER_DISABLE
|
|
_GAME,
|
|
#endif
|
|
_LOWER,
|
|
_RAISE,
|
|
#ifdef TRILAYER_ENABLED
|
|
_ADJUST
|
|
#endif
|
|
};
|
|
|
|
bool process_record_keymap(uint16_t keycode, keyrecord_t *record);
|