7 lines
160 B
JavaScript
7 lines
160 B
JavaScript
function Painting (id, pos, name, direction) {
|
|
this.id = id
|
|
this.position = pos
|
|
this.name = name
|
|
this.direction = direction
|
|
}
|
|
module.exports = Painting
|