atm  
| Vars | |
| authenticated_account | Current money account the ATM is accessing | 
|---|---|
| held_card | ID Card that is currently inserted into the ATM | 
| lockout_time | the time when the lockout on the ATM is lifted | 
| login_attempts | failed login attempts counter, used for locking out the atm | 
| print_cooldown | cooldown inbetween printing balance statements n stuff | 
| view_screen | UI screen the ATM is on currently | 
| Procs | |
| clear_account | ensures proper GC of money account | 
| clear_held_card | ensures proper GC of ID card | 
Var Details
authenticated_account  
Current money account the ATM is accessing
held_card  
ID Card that is currently inserted into the ATM
lockout_time  
the time when the lockout on the ATM is lifted
login_attempts  
failed login attempts counter, used for locking out the atm
print_cooldown  
cooldown inbetween printing balance statements n stuff
view_screen  
UI screen the ATM is on currently
Proc Details
clear_account
ensures proper GC of money account
clear_held_card
ensures proper GC of ID card