WIP
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
using GTAOnlineCasinoHelper.Classes;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace GTAOnlineCasinoHelper.Extensions
|
||||
{
|
||||
public static class CeoExtensions
|
||||
{
|
||||
|
||||
public static string GetRangeName(this CeoRange range)
|
||||
{
|
||||
switch (range)
|
||||
{
|
||||
case CeoRange.STANDARD:
|
||||
return "Standard Range";
|
||||
case CeoRange.MID:
|
||||
return "Mid Range";
|
||||
case CeoRange.TOP:
|
||||
return "Top Range";
|
||||
default:
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user