com.daxie.xops.weapon.WeaponEnumToFilenameConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xopsmanipulator Show documentation
Show all versions of xopsmanipulator Show documentation
XOPSManipulator is a Java library that offers several functions to manipulate matters relating to X operations.
The newest version!
package com.daxie.xops.weapon;
public class WeaponEnumToFilenameConverter {
public static String GetModelFilenameFromWeaponModelType(WeaponModelType model_type) {
String filename="";
filename=WeaponModelFilenamesStock.GetModelFilename(model_type);
return filename;
}
public static String GetTextureFilenameFromWeaponTextureType(WeaponTextureType texture_type) {
String filename="";
filename=WeaponTextureFilenamesStock.GetTextureFilename(texture_type);
return filename;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy