Initial commit
This commit is contained in:
18
code-csharp/en_US/HypothesisGoal.cs
Normal file
18
code-csharp/en_US/HypothesisGoal.cs
Normal file
@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using UnityEngine;
|
||||
|
||||
[Serializable]
|
||||
[CreateAssetMenu(fileName = "hypothesisgoal", menuName = "Deltaswap/HypothesisGoal", order = 1)]
|
||||
public class HypothesisGoal : ScriptableObject
|
||||
{
|
||||
[TextArea]
|
||||
public string GoalHint;
|
||||
|
||||
public int RequiredTasks;
|
||||
|
||||
[Header("Will start as \"HypothesisGoal_\"")]
|
||||
public string GoalPlayprefName;
|
||||
|
||||
[Header("Hypothetical this goal will be in, used for tracking logs")]
|
||||
public Hypothesis ParentHypothesis;
|
||||
}
|
Reference in New Issue
Block a user