FlatBuffers implementation for the Lobster programming language

Language, see: http://strlen.com/lobster/ and https://github.com/aardappel/lobster
This commit is contained in:
aardappel
2018-07-23 19:03:11 -07:00
parent ca5aaf62d3
commit 4898809eca
25 changed files with 2017 additions and 41 deletions

View File

@@ -1,25 +1,24 @@
{
pos: {
x: 1,
y: 2,
z: 3
x: 1.0,
y: 2.0,
z: 3.0
},
hp: 300,
name: "Orc",
weapons:[
weapons: [
{
name: "axe",
damage:100
damage: 100
},
{
name: "bow",
damage:90
damage: 90
}
],
equipped_type: "Weapon",
equipped:
{
name: "bow",
damage:90
}
equipped: {
name: "bow",
damage: 90
}
}