private void Start() { onAboveWater += delegate() { aboveWater = !aboveWater; }; }
public static void AddOnAboveWaterEvent(OnAboveWater method) { if (s == null) { return; } s.onAboveWater += method; }