CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PrismarineJS

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

GitHub Repository: PrismarineJS/mineflayer
Path: blob/master/lib/painting.js
Views: 789
1
function Painting (id, pos, name, direction) {
2
this.id = id
3
this.position = pos
4
this.name = name
5
this.direction = direction
6
}
7
module.exports = Painting
8
9