18 lines
278 B
Lua
18 lines
278 B
Lua
|
|
local PlayerState = {}
|
||
|
|
|
||
|
|
function PlayerState:ctor()
|
||
|
|
|
||
|
|
|
||
|
|
end
|
||
|
|
|
||
|
|
function PlayerState:ReceiveBeginPlay()
|
||
|
|
print(self, "PlayerState:ReceiveBeginPlay")
|
||
|
|
end
|
||
|
|
|
||
|
|
function PlayerState:ReceiveEndPlay()
|
||
|
|
print(self, "PlayerState:ReceiveEndPlay")
|
||
|
|
end
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
return Class(nil, nil, PlayerState)
|