diff --git a/WarmlyShip/WarmlyShip/EntityWarmlyShip.cs b/WarmlyShip/WarmlyShip/EntityWarmlyShip.cs index 165ec36..efa81b4 100644 --- a/WarmlyShip/WarmlyShip/EntityWarmlyShip.cs +++ b/WarmlyShip/WarmlyShip/EntityWarmlyShip.cs @@ -22,10 +22,5 @@ namespace WarmlyShip BodyColor = bodyColor; } - public static EntityWarmlyShip Creator(string data) - { - string[] strs = data.Split(':'); - return new EntityWarmlyShip(Convert.ToInt32(strs[0]), Convert.ToInt32(strs[1]), Color.FromName(strs[2])); - } } }