mirror of
https://github.com/Cardidi/dotween-upm-fork.git
synced 2025-12-21 01:36:05 +08:00
7 lines
157 B
C#
7 lines
157 B
C#
using UnityEngine;
|
|
using System.Collections;
|
|
|
|
public abstract class AbstractSampleClass<T> : ISampleClass
|
|
{
|
|
public abstract void SampleMethod(T value);
|
|
} |