A bit more code cleanup
This commit is contained in:
33
src/games/pokerbackup/characters/lucy.c
Normal file
33
src/games/pokerbackup/characters/lucy.c
Normal file
@ -0,0 +1,33 @@
|
||||
/**
|
||||
* Copyright (c) 2021 Dominic Masters
|
||||
*
|
||||
* This software is released under the MIT License.
|
||||
* https://opensource.org/licenses/MIT
|
||||
*/
|
||||
|
||||
|
||||
#include "lucy.h"
|
||||
|
||||
void pokerCharacterLucyInit(vncharacter_t *vnc) {
|
||||
// Base Layer
|
||||
vnCharacterLayerAdd(vnc, 1, 0, 0, 0, 0, 1440, 2240);
|
||||
|
||||
// Layers
|
||||
vnc->layerEyes = vnCharacterLayerAdd(vnc, 5,
|
||||
1440, 0,
|
||||
675, 327,
|
||||
295, 235
|
||||
);
|
||||
|
||||
vnc->layerMouth = vnCharacterLayerAdd(vnc, 12,
|
||||
1440, 235,
|
||||
675, 327,
|
||||
295, 235
|
||||
);
|
||||
|
||||
vnc->layerEyebrows = vnCharacterLayerAdd(vnc, 5,
|
||||
1440, 470,
|
||||
675, 327,
|
||||
295, 235
|
||||
);
|
||||
}
|
Reference in New Issue
Block a user