Added the dealer proper.

This commit is contained in:
2021-08-23 09:29:53 -07:00
parent 87e7f599a6
commit 0cd19e7b7c
11 changed files with 244 additions and 75 deletions

View File

@ -26,7 +26,16 @@ bool pokerGameInit(game_t *game) {
1000, 1920,
367,256, 280,280
);
pokerGame->scene.characterCount = 1;
vnCharacterInit(pokerGame->scene.characters + 1, &pokerGame->assets.pennyTexture,
1000, 1920,
367,256, 280,280
);
(pokerGame->scene.characters + 0)->x -= 0.3f;
(pokerGame->scene.characters + 1)->x += 0.3f;
(pokerGame->scene.characters + 1)->talking = true;
pokerGame->scene.characterCount = 2;
// Initialize the UI.