You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
635 B
C#
24 lines
635 B
C#
2 weeks ago
|
namespace Fusion.Addons.SimpleKCC
|
||
|
{
|
||
|
internal abstract class KCCNetworkProperty<TContext> : IKCCNetworkProperty where TContext : class
|
||
|
{
|
||
|
public readonly TContext Context;
|
||
|
|
||
|
public readonly int WordCount;
|
||
|
|
||
|
int IKCCNetworkProperty.WordCount => WordCount;
|
||
|
|
||
|
public KCCNetworkProperty(TContext context, int wordCount)
|
||
|
{
|
||
|
Context = context;
|
||
|
WordCount = wordCount;
|
||
|
}
|
||
|
|
||
|
public unsafe abstract void Read(int* ptr);
|
||
|
|
||
|
public unsafe abstract void Write(int* ptr);
|
||
|
|
||
|
public abstract void Interpolate(KCCInterpolationInfo interpolationInfo);
|
||
|
}
|
||
|
}
|