Updating Mudblazor Version

This commit is contained in:
Jonathan
2025-04-27 19:34:50 -04:00
parent 38ff4e3e89
commit e820457176
153 changed files with 5010 additions and 2059 deletions
+2 -3
View File
@@ -1,12 +1,11 @@
using Model.Entity.Types;
using Model.Types;
namespace Model.Entity.Parts;
public class EntityWeaponModel : IEntityPartInterface
{
public int Id { get; set; } = 1;
public int EntityModelId { get; set; }
public string EntityModelId { get; set; } = "EntityWeaponModel";
public virtual EntityModel EntityModel { get; set; }
public int Range { get; set; } = 40;
@@ -17,7 +16,7 @@ public class EntityWeaponModel : IEntityPartInterface
public float Charges { get; set; } = 0;
public int Damage { get; set; } = 0;
public string ComplexDamage { get; set; } = "deals 126 over 6 seconds";
+2 -1
View File
@@ -1,5 +1,6 @@
namespace Model.Entity.Parts;
public interface IEntityPartInterface
public class IEntityPartInterface
{
public string EntityModelId { get; set; }
}