PIBD-13_Baryshev_D.A._LabWork02_Base #2

Closed
xysiboi wants to merge 9 commits from LabWork02 into LabWork01
6 changed files with 22 additions and 39 deletions
Showing only changes of commit 9c13440d18 - Show all commits

View File

@ -1,9 +1,4 @@
using ProjectDumpTruck.Entities;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ProjectDumpTruck.Drawnings;
@ -37,7 +32,23 @@ public class DrawningTruck
/// Высота прорисовки автомобиля
/// </summary>
private readonly int _drawningTruckHeight = 85;
/// <summary>
/// Координата x объекта
/// </summary>
public int? GetPosX => _startPosX;
/// <summary>
/// Координата y объекта
/// </summary>
public int? GetPosY => _startPosY;
/// <summary>
/// Ширина объекта
/// </summary>
public int? GetWidth => _drawningTruckWidth;
/// <summary>
/// Высота объекта
/// </summary>
public int? GetHeight => _drawningTruckHeight;
/// <summary>
/// Пустой конструктор
/// </summary>

View File

@ -1,12 +1,4 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

using ProjectDumpTruck.Drawnings;
namespace ProjectDumpTruck

View File

@ -1,9 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ProjectDumpTruck.MovementStrategy;
/// <summary>

View File

@ -1,9 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ProjectDumpTruck.MovementStrategy;
public interface IMoveableObject

View File

@ -1,9 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ProjectDumpTruck.MovementStrategy;
public class ObjectParameters

View File

@ -1,9 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ProjectDumpTruck.MovementStrategy
{
public enum StrategyStatus