mirror of
https://gitgud.io/AbstractConcept/rimworld-animation-studio.git
synced 2024-08-15 00:43:27 +00:00
18 lines
387 B
C#
18 lines
387 B
C#
using System;
|
|
using System.Collections;
|
|
|
|
namespace UnityEngine.TestTools
|
|
{
|
|
internal class TestCommandPcHelper
|
|
{
|
|
public virtual void SetEnumeratorPC(IEnumerator enumerator, int pc)
|
|
{
|
|
// Noop implementation used in playmode.
|
|
}
|
|
|
|
public virtual int GetEnumeratorPC(IEnumerator enumerator)
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
}
|