"Current traits proposal"

	class Rocket : ISoundEmittingEntity {
		public Vector3 Position { get; private set; }
		public float SoundRadius { get; } = Units.InMetres(4f);
		
		public bool IsAudibleToPlayer(Player player) => ISoundEmittingEntity.base.IsAudibleToPlayer(player);
	}


Code snippet taken from "C# 8 Concerns".