Genre: Shooter (FPS/TPS) Gunplay feel, responsive combat, and competitive balance define shooters. NEVER Do (Expert Anti-Patterns) Gunplay & Hit Registration - NEVER use for hit detection; strictly use to maintain frame-rate independent accuracy. - NEVER apply recoil to the physical weapon model; strictly apply it to Camera Rotation (kick) and Weapon Bloom (spread) . - NEVER trust the client for hit registration in multiplayer; strictly use Server-Authoritative validation with lag compensation. - NEVER synchronize every bullet over the network; strictly use Client-Side Prediction and send onl…