view docs/specs/tileset.md @ 130:f58075b58fa1

Client: create dispatcher class, closes #698 The dispatcher class is the main class that contains several functions to be called to dispatch UI events. It is defined as a class because it has to be passed into C++ source files which can be complicated with templates and our client backend code.
author David Demelier <markand@malikania.fr>
date Wed, 27 Sep 2017 06:37:18 +0200
parents 0addfab87b17
children 835c8ee3f9e5
line wrap: on
line source

# Tileset

## JSON specification

### Synopsis

````json
{
    "cell": {
        width: 32,
        height: 32
    },
    "image": "image-identifier",
    "properties": {
        { "p1", "value 1" },
        { "p2", 'value 2" }
    },
}
````