12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- using LitJson;
- namespace FSAssist {
- public class AssistMethods {
-
- public static bool IsRectContain(Vector3 minP1, Vector3 maxP1, Transform pos) {
- return false;
- }
-
- public static object Get(JsonData data, string key) {
- return null;
- }
-
- public static int ReadInt(JsonData data, string key) {
-
- if (data[key] == null) {
- return 0;
- }
- return (int)data[key];
- }
-
- public static string ReadString(JsonData data, string key) {
-
- if (data[key] == null) {
- return null;
- }
- return (string)data[key];
- }
- }
- }
|