public static void DrawTexture(StaticTextures texture, Vector2 vector, Color color)
 {
     SpriteBatch.Draw(_textures[texture], vector, color);
 }
 public static void DrawTexture(StaticTextures texture, Rectangle rectangle, Color color)
 {
     SpriteBatch.Draw(_textures[texture], rectangle, color);
 }