All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.codeandweb.physicseditor.MetadataNode Maven / Gradle / Ivy

The newest version!
package com.codeandweb.physicseditor;

import com.badlogic.gdx.utils.XmlReader;

class MetadataNode {
  final int format;
  final float ptmRatio;

  MetadataNode(XmlReader.Element data)
  {
    format = data.getInt("format");
    ptmRatio = data.getFloat("ptm_ratio");
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy