Skip to content

Instantly share code, notes, and snippets.

@rumanwork
rumanwork / AnimatableSprite.cs
Last active December 12, 2015 01:18 — forked from criscokid/AnimatableSprite.cs
Animation class for Futile framework
using UnityEngine;
using System.Collections;
using System.Collections.Generic;
public class AnimatableSprite : FSprite {
private string _file;
private int _currentIndex;
private int _maxFrames;
private Animation _currentAnimation;