Files
BusyRabbit/Content/Lua/GamePlay/BusyPlayerState.lua
2025-07-09 01:08:35 +08:00

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)