-
Notifications
You must be signed in to change notification settings - Fork 437
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
1 parent
6a1868a
commit be212df
Showing
14 changed files
with
284 additions
and
183 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/// Called before beam is redrawn | ||
#define COMSIG_BEAM_BEFORE_DRAW "beam_before_draw" | ||
#define BEAM_CANCEL_DRAW (1 << 0) | ||
|
||
/// Sent to a beam when an atom enters any turf the beam covers: (obj/effect/ebeam/hit_beam, atom/movable/entered) | ||
#define COMSIG_BEAM_ENTERED "beam_entered" | ||
|
||
/// Sent to a beam when an atom exits any turf the beam covers: (obj/effect/ebeam/hit_beam, atom/movable/exited) | ||
#define COMSIG_BEAM_EXITED "beam_exited" | ||
|
||
/// Sent to a beam when any turf the beam covers changes: (list/datum/callback/post_change_callbacks) | ||
#define COMSIG_BEAM_TURFS_CHANGED "beam_turfs_changed" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.