mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-08 18:55:07 +00:00
14 lines
No EOL
273 B
C#
14 lines
No EOL
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];
|
|
}
|
|
}
|
|
} |