iigs-sprite-compiler/SpriteCompiler/Problem/CodeSequence.cs

18 lines
413 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SpriteCompiler.Problem
{
/// <summary>
/// A set of code sequences that can be used to generate sprites
/// </summary>
public class CodeSequence
{
// Number of cycles that this code snippets takes to execute
public int CycleCount { get; }
}
}