Files
Dawn/src/games/pokerbackup/characters/lucy.c

34 lines
586 B
C

/**
* 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
);
}