Dat151 progress

This commit is contained in:
dexyfex 2019-03-02 04:23:41 +11:00
parent 8183354186
commit 9a13bc9aa3
2 changed files with 1769 additions and 146 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1080,6 +1080,30 @@ namespace CodeWalker.GameFiles
}
}
public float Float
{
get
{
return MetaTypes.ConvertData<float>(MetaTypes.ConvertToBytes(Hash));
}
}
public short Short1
{
get
{
return (short)(Hash & 0xFFFF);
}
}
public short Short2
{
get
{
return (short)((Hash >> 16) & 0xFFFF);
}
}
public MetaHash(uint h) { Hash = h; }
public override string ToString()