Case-sensitive rename operation (2/2)

This commit is contained in:
n00mkrad
2021-08-23 16:50:18 +02:00
parent 2c14fa9515
commit 9433269813
88 changed files with 36439 additions and 0 deletions

15
Code/Data/Padding.cs Normal file
View File

@@ -0,0 +1,15 @@
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;
}
}