This repository has been archived on 2025-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
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()