12 lines
216 B
Text
12 lines
216 B
Text
// Here, "/obj" is the type, a /obj being a simple game object.
|
|
var/obj/x
|
|
// It can also be defined like this, because of the tree structure:
|
|
var
|
|
obj
|
|
x
|
|
// Or this
|
|
var/obj
|
|
x
|
|
|
|
// ...
|
|
// You get the idea
|