mirror of
https://github.com/RHeavenStudio/HeavenStudio.git
synced 2025-04-30 14:14:28 +02:00
14 lines
273 B
C#
14 lines
273 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace HeavenStudio
|
|
{
|
|
public static class Datamodel
|
|
{
|
|
public static string Split(this string s, int index)
|
|
{
|
|
return s.Split('/')[index];
|
|
}
|
|
}
|
|
} |