Adds verb categories (#766)
* Adds verb categories * Update Content.Shared/GameObjects/Verbs/Verb.cs Co-Authored-By: Pieter-Jan Briers <pieterjan.briers@gmail.com> * Make GetCategory virtual Co-authored-by: Pieter-Jan Briers <pieterjan.briers@gmail.com>
This commit is contained in:
committed by
GitHub
parent
5747eb5fac
commit
e17ffbd76f
@@ -35,12 +35,14 @@ namespace Content.Shared.GameObjects.EntitySystemMessages
|
||||
{
|
||||
public readonly string Text;
|
||||
public readonly string Key;
|
||||
public readonly string Category;
|
||||
public readonly bool Available;
|
||||
|
||||
public VerbData(string text, string key, bool available)
|
||||
public VerbData(string text, string key, string category, bool available)
|
||||
{
|
||||
Text = text;
|
||||
Key = key;
|
||||
Category = category;
|
||||
Available = available;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user