blob: b5a0f086d10f696e90e206595f1b80d1cc7db72b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
using UnityEngine;
namespace NGS.MeshFusionPro;
public interface ICombinedObjectPart
{
ICombinedObject Root { get; }
Bounds Bounds { get; }
Bounds LocalBounds { get; }
void Destroy();
}
public interface ICombinedObjectPart<TCombinedObject> : ICombinedObjectPart where TCombinedObject : ICombinedObject
{
new TCombinedObject Root { get; }
}
|