You are tasked with designing and implementing a class that processes a continuous stream of events in real time. Each event is associated with a timestamp (an integer representing seconds since the epoch). The class should support the following operations:
add_event(timestamp): Add an event with the given timestamp.
get_average(current_time): Calculate and return the average number of events per minute for events that occurred in the last 60 seconds (i.e., for events with timestamps in the range (current_time - 60, current_time]).
Guidelines:
Implement your solution in the programming language of your choice. Your submission should include code that demonstrates the functionality of the class, showing how events are added and how the average is reported when queried.