16 lines
357 B
C#
16 lines
357 B
C#
// Copyright (c) 2012-2021 Wojciech Figat. All rights reserved.
|
|
|
|
namespace FlaxEngine
|
|
{
|
|
/// <summary>
|
|
/// Interface for objects that can be transformed.
|
|
/// </summary>
|
|
public interface ITransformable
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the transform.
|
|
/// </summary>
|
|
Transform Transform { get; set; }
|
|
}
|
|
}
|