Initial commit.

This commit is contained in:
Redacted by Stellabellum INC
2013-09-10 23:17:15 -07:00
commit 485a019196
81032 changed files with 7634843 additions and 0 deletions
@@ -0,0 +1,34 @@
/**
* Title: resource_attribute.java
* Description: resource attribute name->value pair
* Copyright: Copyright (c) 2004
* Company: Sony Online Entertainment
* @author Steve Jakab
* @version 1.0
*/
package script;
public class resource_attribute
{
private String m_name;
private int m_value;
public resource_attribute(String name, int value)
{
m_name = name;
m_value = value;
}
public String getName()
{
return m_name;
}
public int getValue()
{
return m_value;
}
}