// Content/UE/Cast.ts
export function Cast<T>(obj: unknown): T | null {
return (obj as T) || null;
}