Skip to content

Instantly share code, notes, and snippets.

View kristajg's full-sized avatar
💭
right now I'm on github! imagine!

Krista Goralczyk kristajg

💭
right now I'm on github! imagine!
View GitHub Profile
import Phaser from 'phaser';
// Animations
import { createPlayerAnims } from '../anims/playerAnims';
// TextBox constants
const sampleText = 'hey there my guy';
const COLOR_PRIMARY = 0x352b42;
const COLOR_LIGHT = 0xb8b5b9;
const COLOR_DARK = 0x260e04;
// file1: myFunctions.js
export default {
coolFunction: function() {
return true;
},
anotherFunction: function() {
return false;
}
}
// Vanilla db model for dynamoDB
module.exports = {
TableName: 'preamp-project',
KeySchema: [
{
AttributeName: 'id',
KeyType: 'HASH'
},
{