Just thiknking about how to put it all together.
This commit is contained in:
@ -43,6 +43,9 @@
|
||||
// Player Input
|
||||
#include "input/input.h"
|
||||
|
||||
// Locales
|
||||
#include "locale/language.h"
|
||||
|
||||
// Poker Game Logic
|
||||
#include "poker/bet.h"
|
||||
#include "poker/card.h"
|
||||
|
14
include/dawn/game/poker/pokercharacters.h
Normal file
14
include/dawn/game/poker/pokercharacters.h
Normal file
@ -0,0 +1,14 @@
|
||||
/**
|
||||
* Copyright (c) 2021 Dominic Masters
|
||||
*
|
||||
* This software is released under the MIT License.
|
||||
* https://opensource.org/licenses/MIT
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
#include "../../libs.h"
|
||||
#include "../../vn/vncharacter.h"
|
||||
|
||||
typedef struct {
|
||||
char *bruh;
|
||||
} pokercharacters_t;
|
25
include/dawn/locale/language.h
Normal file
25
include/dawn/locale/language.h
Normal file
@ -0,0 +1,25 @@
|
||||
/**
|
||||
* Copyright (c) 2021 Dominic Masters
|
||||
*
|
||||
* This software is released under the MIT License.
|
||||
* https://opensource.org/licenses/MIT
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
#include "../libs.h"
|
||||
|
||||
#define LANGUAGE_STRING_MAX 512
|
||||
|
||||
typedef struct {
|
||||
char *name;
|
||||
char *value;
|
||||
} languagevariable_t;
|
||||
|
||||
typedef struct {
|
||||
char *key;
|
||||
} languagestring_t;
|
||||
|
||||
typedef struct {
|
||||
languagestring_t strings[LANGUAGE_STRING_MAX];
|
||||
int32_t stringCount;
|
||||
} language_t;
|
Reference in New Issue
Block a user