18 lines
444 B
C#
18 lines
444 B
C#
////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2007-2020 , Inc. All Rights Reserved.
|
|
//
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
using UnityEngine;
|
|
|
|
namespace GCSeries.Core.Input
|
|
{
|
|
public class ZPointerVisualization : MonoBehaviour
|
|
{
|
|
public virtual void Process(ZPointer pointer, Vector3 worldScale)
|
|
{
|
|
}
|
|
}
|
|
}
|