9 lines
204 B
C#
9 lines
204 B
C#
using UnityEngine;
|
|
|
|
namespace DanieleMarotta.RiversongCodeShowcase
|
|
{
|
|
public abstract class GameDataAsset : ScriptableObject, IGameDataRuntimeId
|
|
{
|
|
public int RuntimeId { get; set; }
|
|
}
|
|
} |