aboutsummaryrefslogtreecommitdiff
path: root/users/drashna/template.h
diff options
context:
space:
mode:
Diffstat (limited to 'users/drashna/template.h')
-rw-r--r--users/drashna/template.h15
1 files changed, 6 insertions, 9 deletions
diff --git a/users/drashna/template.h b/users/drashna/template.h
index dd1c48760..178f96e22 100644
--- a/users/drashna/template.h
+++ b/users/drashna/template.h
@@ -1,7 +1,6 @@
1#ifndef USERSPACE 1#pragma once
2#define USERSPACE
3 2
4#include "quantum.h" 3#include QMK_KEYBOARD_H
5#include "version.h" 4#include "version.h"
6#include "eeprom.h" 5#include "eeprom.h"
7 6
@@ -9,10 +8,8 @@
9#define BASE 0 8#define BASE 0
10 9
11enum custom_keycodes { 10enum custom_keycodes {
12 VRSN = SAFE_RANGE, // can always be here 11 VRSN = SAFE_RANGE, // can always be here
13 KC_MAKE, 12 KC_MAKE,
14 KC_RESET, 13 KC_RESET,
15 NEWPLACEHOLDER //use "NEWPLACEHOLDER for keymap specific codes 14 NEWPLACEHOLDER // use "NEWPLACEHOLDER for keymap specific codes
16}; 15};
17
18#endif