13 lines
246 B
C#
13 lines
246 B
C#
using UnityEngine;
|
|
|
|
namespace Unity.Tutorials.Core
|
|
{
|
|
internal static class GameObjectProxy
|
|
{
|
|
public static Bounds CalculateBounds(GameObject gameObject)
|
|
{
|
|
return gameObject.CalculateBounds();
|
|
}
|
|
}
|
|
}
|