diff options
| author | Sophia Pearson <codergal89@gmail.com> | 2022-05-24 15:01:42 +0200 |
|---|---|---|
| committer | Sophia Pearson <codergal89@gmail.com> | 2022-05-24 15:02:10 +0200 |
| commit | 8374dc75d3106cf0ff363b28a49cdf8c22fad13b (patch) | |
| tree | 7df60280252b2aac872488562b679d3e39087269 | |
| parent | 93601b5d7a0409e0e23bd272cf45b121312a7da0 (diff) | |
| download | texty-8374dc75d3106cf0ff363b28a49cdf8c22fad13b.tar.xz texty-8374dc75d3106cf0ff363b28a49cdf8c22fad13b.zip | |
resources: add initial Location resource
| -rw-r--r-- | Scripts/Location.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Scripts/Location.cs b/Scripts/Location.cs new file mode 100644 index 0000000..ab8543b --- /dev/null +++ b/Scripts/Location.cs @@ -0,0 +1,9 @@ +using Godot; + +namespace Texty.Scripts +{ + public class Location : Resource + { + [Export(PropertyHint.MultilineText)] public string FlavourText = string.Empty; + } +}
\ No newline at end of file |
