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