mirror of
https://github.com/ThePhD/sol2.git
synced 2024-03-22 13:10:44 +08:00
5460f7e626
Addresses #157 temporarily
29 lines
603 B
Lua
29 lines
603 B
Lua
-- 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() |