Files
flowframes/Code/Data/Padding.cs

16 lines
314 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Flowframes.Data
{
class Padding
{
2020-12-02 17:23:24 +01:00
public const int inputFrames = 9;
public const int inputFramesRenamed = 8;
2021-01-11 17:43:35 +01:00
public const int interpFrames = 8;
}
}