Redid the entire textbox code to be really nice now.
This commit is contained in:
34
src/strings.h
Normal file
34
src/strings.h
Normal file
@@ -0,0 +1,34 @@
|
||||
/**
|
||||
* Copyright (c) 2022 Dominic Masters
|
||||
*
|
||||
* This software is released under the MIT License.
|
||||
* https://opensource.org/licenses/MIT
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
#include "libs.h"
|
||||
|
||||
extern const char STR_ERROR[];
|
||||
extern const char STR_HELLO[];
|
||||
|
||||
extern const char STR_POKER_GAME_START[];
|
||||
extern const char STR_POKER_GAME_TAKING_BLINDS[];
|
||||
extern const char STR_POKER_GAME_CARDS_DEALT[];
|
||||
|
||||
extern const char STR_POKER_GAME_CARDS_FLOPPED[];
|
||||
extern const char STR_POKER_GAME_CARDS_TURNED[];
|
||||
extern const char STR_POKER_GAME_CARDS_RIVERED[];
|
||||
|
||||
extern const char STR_DEBUG_WINNER_DECIDED[];
|
||||
extern const char STR_DEBUG_PLAYER[];
|
||||
|
||||
extern const char STR_POKER_GAME_AI_FOLD[];
|
||||
extern const char STR_POKER_GAME_AI_RAISE[];
|
||||
extern const char STR_POKER_GAME_AI_RAISE_BLUFF[];
|
||||
extern const char STR_POKER_GAME_AI_CALL[];
|
||||
extern const char STR_POKER_GAME_AI_CALL_BLUFF[];
|
||||
extern const char STR_POKER_GAME_AI_ALL_IN[];
|
||||
extern const char STR_POKER_GAME_AI_ALL_IN_BLUFF[];
|
||||
extern const char STR_POKER_GAME_AI_CHECK[];
|
||||
extern const char STR_POKER_GAME_AI_CHECK_BLUFF[];
|
||||
extern const char STR_FOX[];
|
Reference in New Issue
Block a user