is it worth the overhead of the hamdsandwich include file if i'm just going to use a single function out of it?
Code:
RegisterHam(Ham_Spawn, "player", ham_atSpawn", 1)
as opposed to....
Code:
register_event("start", "atSpawn", "a", "1=Round_Start")
using the for-loop traversal in atSpawn()
is this really worth it? (other than simply lines of code)
i feel like Ham_Spawn does something quite similar, but i'm not so familiar with hamsandwich.
i'd like some expert opinions.