mirror of
http://47.107.252.169:3000/Roguelite-Game-Developing-Team/Gen_Hack-and-Slash-Roguelite.git
synced 2025-11-19 21:57:12 +08:00
13 lines
224 B
C#
13 lines
224 B
C#
|
|
using UnityEngine;
|
||
|
|
|
||
|
|
namespace CameraControl
|
||
|
|
{
|
||
|
|
public class CameraControl:MonoBehaviour,Base.ITick
|
||
|
|
{
|
||
|
|
public Entity.Entity focusedEntity=null;
|
||
|
|
public void Tick()
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|