23 lines
301 B
C#
23 lines
301 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ProjectTransportation.Entities.Enums;
|
|
|
|
[Flags]
|
|
public enum BrokenElements
|
|
{
|
|
None = 0,
|
|
|
|
Wheels = 1,
|
|
|
|
Headlights = 2,
|
|
|
|
Engine = 4,
|
|
|
|
Transmission = 8
|
|
}
|
|
|