blob: d91da2eda89b0286b68882b01a542a507b0187f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef OCTAGON_H
#define OCTAGON_H
#include "quantum.h"
#ifdef KEYBOARD_octagon_v1
#include "v1.h"
#endif
#ifdef KEYBOARD_octagon_v2
#include "v2.h"
#endif
#endif
|