9 lines
232 B
C#
9 lines
232 B
C#
using UnityEngine;
|
|
|
|
namespace DanieleMarotta.RiversongCodeShowcase
|
|
{
|
|
public abstract class ProducerAnimation : MonoBehaviour
|
|
{
|
|
public abstract void UpdateAnimation(in BuildingProductionState productionState);
|
|
}
|
|
} |