diff options
| author | Georgios Andreadis <g.andreadis@student.tudelft.nl> | 2017-01-24 12:06:09 +0100 |
|---|---|---|
| committer | Georgios Andreadis <g.andreadis@student.tudelft.nl> | 2017-01-24 12:06:09 +0100 |
| commit | c96e6ffafb62bde1e08987b1fdf3c0786487f6ec (patch) | |
| tree | 37eaf4cf199ca77dc131b4212c526b707adf2e30 /src/scripts/views/layers/layer.ts | |
Initial commit
Diffstat (limited to 'src/scripts/views/layers/layer.ts')
| -rw-r--r-- | src/scripts/views/layers/layer.ts | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/scripts/views/layers/layer.ts b/src/scripts/views/layers/layer.ts new file mode 100644 index 00000000..5e5295ac --- /dev/null +++ b/src/scripts/views/layers/layer.ts @@ -0,0 +1,8 @@ +/** + * Interface for a subview, representing a layer of the map view. + */ +export interface Layer { + container: createjs.Container; + + draw(): void; +} |
