WX-Game1/Assets/MotionFramework/Scripts/Runtime/Engine/Engine.Reference/IReference.cs

13 lines
292 B
C#

//--------------------------------------------------
// Motion Framework
// Copyright©2019-2020 何冠峰
// Licensed under the MIT license
//--------------------------------------------------
namespace MotionFramework.Reference
{
public interface IReference
{
void OnRelease();
}
}