This repository has been archived on 2025-03-02. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
rpgedit/src/app.coffee

21 lines
440 B
CoffeeScript

'use strict'
require './style.css'
window._ = require 'lodash'
MapData = require './model/MapData'
MapContext = require './control/MapContext'
mapContext = null
window.onload = ->
xhr = new XMLHttpRequest()
xhr.onload = ->
mapDef = new MapData(JSON.parse this.responseText)
mapContext = new MapContext mapDef
xhr.open 'GET', 'resources/map/test.json', true
xhr.send()