add typed character to PlayerCharacter component

This commit is contained in:
Reid 2023-07-19 00:49:57 -07:00
parent 5302ecc6cc
commit 31559be3b8
4 changed files with 26 additions and 1 deletions

View file

@ -1,3 +1,5 @@
import { CharacterRigR6 } from "@rbxts/character-promise"
/**
* The Model component.
*
@ -47,6 +49,7 @@ export interface Damage {
* Holds the Humanoid and Player.
*/
export interface PlayerCharacter {
character: CharacterRigR6,
humanoid: Humanoid,
player: Player
}