24 lines
344 B
C#
24 lines
344 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class 시트1
|
|
{
|
|
public int index;
|
|
public string test1;
|
|
public int test2;
|
|
public testenums test3;
|
|
public string test4;
|
|
public DateTime test5;
|
|
}
|
|
|
|
public enum testenums
|
|
{
|
|
none = 0,
|
|
aaa,
|
|
bbb,
|
|
ccc,
|
|
ddd
|
|
}
|