特效新内容。修复gameplay致命bug和分数保存bug
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
/* ---------------------------------------
|
||||
* Author: Martin Pane (martintayx@gmail.com) (@martinTayx)
|
||||
* Contributors: https://github.com/Tayx94/graphy/graphs/contributors
|
||||
* Project: Graphy - Ultimate Stats Monitor
|
||||
* Date: 03-Jan-18
|
||||
* Studio: Tayx
|
||||
*
|
||||
* Git repo: https://github.com/Tayx94/graphy
|
||||
*
|
||||
* This project is released under the MIT license.
|
||||
* Attribution is not required, but it is always welcomed!
|
||||
* -------------------------------------*/
|
||||
|
||||
using UnityEngine;
|
||||
|
||||
namespace Tayx.Graphy.UI
|
||||
{
|
||||
public interface IMovable
|
||||
{
|
||||
/// <summary>
|
||||
/// Sets the position of the module.
|
||||
/// </summary>
|
||||
/// <param name="newModulePosition">
|
||||
/// The new position of the module.
|
||||
/// </param>
|
||||
void SetPosition( GraphyManager.ModulePosition newModulePosition, Vector2 offset );
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user