aboutsummaryrefslogtreecommitdiffstats
path: root/deps/sol2/examples/source/player_script.lua
diff options
context:
space:
mode:
authorAndy Belle-Isle <drumsetmonkey@gmail.com>2019-08-30 00:45:36 -0400
committerAndy Belle-Isle <drumsetmonkey@gmail.com>2019-08-30 00:45:36 -0400
commitdc2493e7525bb7633f697ef10f72b72b46222249 (patch)
tree9816755219e65d3f47fdce81c78f3736a7ddb8ab /deps/sol2/examples/source/player_script.lua
parent9d2b31797d0cfd130802b69261df2cd402e39b49 (diff)
Forget what I said, I just need to change git attributes to mark for vendor
Diffstat (limited to 'deps/sol2/examples/source/player_script.lua')
-rw-r--r--deps/sol2/examples/source/player_script.lua29
1 files changed, 0 insertions, 29 deletions
diff --git a/deps/sol2/examples/source/player_script.lua b/deps/sol2/examples/source/player_script.lua
deleted file mode 100644
index c53a8d1..0000000
--- a/deps/sol2/examples/source/player_script.lua
+++ /dev/null
@@ -1,29 +0,0 @@
--- call single argument integer constructor
-p1 = player.new(2)
-
--- p2 is still here from being
--- set with lua["p2"] = player(0); below
-local p2shoots = p2:shoot()
-assert(not p2shoots)
--- had 0 ammo
-
--- set variable property setter
-p1.hp = 545;
--- get variable through property getter
-print(p1.hp);
-
-local did_shoot_1 = p1:shoot()
-print(did_shoot_1)
-print(p1.bullets)
-local did_shoot_2 = p1:shoot()
-print(did_shoot_2)
-print(p1.bullets)
-local did_shoot_3 = p1:shoot()
-print(did_shoot_3)
-
--- can read
-print(p1.bullets)
--- would error: is a readonly variable, cannot write
--- p1.bullets = 20
-
-p1:boost()