A bit more code cleanup

This commit is contained in:
2021-11-22 20:25:45 -08:00
parent a4198e8396
commit 6c9eb8b685
217 changed files with 206 additions and 184 deletions

View 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
);
}