// Copyright Epic Games, Inc. All Rights Reserved. namespace Epic.OnlineServices { internal interface IGettable where T : struct { void Get(out T other); } }