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
using System; | |
using System.Linq; | |
using System.Collections.Generic; | |
public static class GasConstants | |
{ | |
const float OneAtmosphere = 101.325; // kPa | |
const float IdealGasEquation = 8.31; // kPa*L/(K*mol) | |
const float TemperatureCosmicMicrowaveBackround = 2.7; // K | |
} |
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
using System; | |
using System.Linq; | |
using System.Collections.Generic; | |
public static class GasConstants | |
{ | |
const float OneAtmosphere = 101.325; // kPa | |
const float IdealGasEquation = 8.31; // kPa*L/(K*mol) | |
const float TemperatureCosmicMicrowaveBackround = 2.7; // K | |
} |
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
diff --git a/code/__HELPERS/icon_smoothing.dm b/code/__HELPERS/icon_smoothing.dm | |
index b3461ab..01a65ae 100644 | |
--- a/code/__HELPERS/icon_smoothing.dm | |
+++ b/code/__HELPERS/icon_smoothing.dm | |
@@ -54,6 +54,32 @@ | |
/atom/movable/var/can_be_unanchored = 0 | |
/turf/var/list/fixed_underlay = null | |
+/var/list/rotatableSmoothIcons = list() | |
+ |