11 lines
224 B
C#
11 lines
224 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
|
|
public struct DATACLASS_CHARACTER_RENDER_DATA
|
|
{
|
|
public Vector2 RENDER_POSITION;
|
|
public bool IS_ENEMY;
|
|
public Quaternion ROTATION;
|
|
} |