Files
J1B2-Game-controller/docs/opdracht/uml.md
2024-01-12 12:15:34 +01:00

360 B

UML game.js

classDiagram
 class bullet {
    +x
    +y
    +shot
    +angle
    +bulletHit
    +direction
    +directionX
    +direcitonY
    +hasMoved
    +projectile
    +radius
    +targetx
    +targety
    +speed
    -hit
    -shot
    -isOffScreen
    -originalPos
    -targetx
    -targety
    +draw()
    +update(targetx, targety)
 }