For base structure see http://symfony.com/doc/current/cookbook/bundles/best_practices.html
Model/Entity
import "pixi"; | |
import Phaser from "phaser"; | |
import hotReloadPatcher from "./utils/hotReloadPatcher"; | |
import hotReloadState from "./utils/hotReloadState"; | |
import BootState from "./states/Boot"; | |
import PreloadState from "./states/Preload"; | |
import GameState from "./states/Game"; |
const deepEqual = require('deep-equal'); | |
// Constants | |
const UPDATE_PATH = "@@router/UPDATE_PATH"; | |
const SELECT_STATE = state => state.routing; | |
// Action creator | |
function pushPath(path, state, { avoidRouterUpdate = false } = {}) { |
package net.cogindo.ssl; | |
import java.io.IOException; | |
import java.net.InetAddress; | |
import java.net.Socket; | |
import java.net.UnknownHostException; | |
import java.security.KeyManagementException; | |
import java.security.NoSuchAlgorithmException; | |
import javax.net.ssl.SSLContext; |
For base structure see http://symfony.com/doc/current/cookbook/bundles/best_practices.html
Model/Entity