Add WeaponGridProps

This commit is contained in:
Justin Edmund 2020-09-16 03:44:58 -07:00
parent 65e460d0e1
commit 81cf4889e8

5
src/types/WeaponGridProps.d.ts vendored Normal file
View file

@ -0,0 +1,5 @@
interface WeaponGridProps {
onReceiveData: (Weapon, number) => void
weapon: Weapon | undefined
position: number
}