15 lines
219 B
C#
15 lines
219 B
C#
using System;
|
|
|
|
using UnityEngine;
|
|
|
|
namespace ET.Client
|
|
{
|
|
[ComponentOf(typeof(Scene))]
|
|
public class OperaComponent: Entity, IAwake, IUpdate
|
|
{
|
|
public Vector3 ClickPoint;
|
|
|
|
public int mapMask;
|
|
}
|
|
}
|