10 lines
206 B
Lua
10 lines
206 B
Lua
local module = {}
|
|
|
|
---@param note Note
|
|
function module.opponentNoteHit(note)
|
|
if note.raw.k == "ugh" then
|
|
sharedVars.characters.dad:PlayAnimation("singUP-alt")
|
|
end
|
|
end
|
|
|
|
return module |