20 lines
397 B
C
20 lines
397 B
C
/**
|
|
* Copyright (c) 2021 Dominic Masters
|
|
*
|
|
* This software is released under the MIT License.
|
|
* https://opensource.org/licenses/MIT
|
|
*/
|
|
#pragma once
|
|
|
|
// Game Definitions
|
|
#define SETTING_GAME_POKER 1
|
|
#define SETTING_GAME_DAWN 2
|
|
|
|
// Settings
|
|
#define SETTING_GAME SETTING_GAME_POKER
|
|
|
|
|
|
// Compiler setting fallbacks
|
|
#ifndef SETTING_PLATFORM
|
|
#error Missing platform setting from compiler.
|
|
#endif |