complete refactor
This commit is contained in:
parent
65fe0e5c5d
commit
de2e8b1e50
71 changed files with 212 additions and 137 deletions
16
scripts/resources/entities/EntityResource.cs
Normal file
16
scripts/resources/entities/EntityResource.cs
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
using Godot;
|
||||
|
||||
[Tool]
|
||||
public partial class EntityResource : Resource
|
||||
{
|
||||
[Export] public string NameKey;
|
||||
[Export] public string DescriptionKey;
|
||||
[Export] public float Cost;
|
||||
[Export] public PackedScene Scene;
|
||||
[Export] public float ReloadTime;
|
||||
[Export(PropertyHint.Range, "0,1,0.01")] public float ReloadProgress;
|
||||
[Export] public Texture2D Preview;
|
||||
[Export] public CustomSeedpacketFrame CustomFrame;
|
||||
[Export] public int Order = 0;
|
||||
public string internal_id;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue