mirror of
https://github.com/Cardidi/dotween-upm-fork.git
synced 2025-12-20 09:16:02 +08:00
10 lines
216 B
C#
10 lines
216 B
C#
using UnityEngine;
|
|
using System.Collections;
|
|
|
|
public class SampleVector3Class : AbstractSampleClass<Vector3>
|
|
{
|
|
public override void SampleMethod(Vector3 value)
|
|
{
|
|
Debug.Log("Sample method log > " + value);
|
|
}
|
|
} |