Files
BusyRabbit/Content/Lua/GamePlay/BusyPlayerState.lua

18 lines
278 B
Lua
Raw Normal View History

2025-07-09 01:08:35 +08:00
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)