You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
611 B
26 lines
611 B
using UnityEngine; |
|
using Unity.PlasticSCM.Editor.UI; |
|
|
|
namespace Unity.PlasticSCM.Editor |
|
{ |
|
internal static class PlasticNotification |
|
{ |
|
internal enum Status |
|
{ |
|
None, |
|
IncomingChanges, |
|
Conflicts |
|
} |
|
|
|
internal static Texture GetIcon(Status status) |
|
{ |
|
if (status == Status.IncomingChanges) |
|
return Images.GePlasticNotifyIncomingIcon(); |
|
|
|
if (status == Status.Conflicts) |
|
return Images.GetPlasticNotifyConflictIcon(); |
|
|
|
return Images.GetPlasticViewIcon(); |
|
} |
|
} |
|
}
|
|
|