mirror of
https://mirror.ghproxy.com/https://github.com/dexyfex/CodeWalker
synced 2026-05-16 23:54:52 +08:00
Dat151 progress
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -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 MetaHash(uint h) { Hash = h; }
|
||||||
|
|
||||||
public override string ToString()
|
public override string ToString()
|
||||||
|
|||||||
Reference in New Issue
Block a user