9 lines
173 B
C#
9 lines
173 B
C#
|
|
namespace HTraceSSGI.Scripts.Extensions.CameraHistorySystem
|
||
|
|
{
|
||
|
|
public interface ICameraHistoryData
|
||
|
|
{
|
||
|
|
int GetHash();
|
||
|
|
void SetHash(int hashIn);
|
||
|
|
}
|
||
|
|
}
|