mirror of
https://github.com/n00mkrad/flowframes.git
synced 2025-12-16 16:37:48 +01:00
16 lines
314 B
C#
16 lines
314 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Flowframes.Data
|
|
{
|
|
class Padding
|
|
{
|
|
public const int inputFrames = 9;
|
|
public const int inputFramesRenamed = 8;
|
|
public const int interpFrames = 8;
|
|
}
|
|
}
|