13 lines
178 B
C#
13 lines
178 B
C#
|
using System.Collections;
|
|||
|
using System.Collections.Generic;
|
|||
|
using UnityEngine;
|
|||
|
|
|||
|
namespace Cal
|
|||
|
{
|
|||
|
public class AnimFrame
|
|||
|
{
|
|||
|
public string Name;
|
|||
|
public int FrameCount;
|
|||
|
}
|
|||
|
}
|