Skip to content

Commit

Permalink
[Decomp Progress] Mapped more functions in PProperties.h
Browse files Browse the repository at this point in the history
  • Loading branch information
AdventureT committed Oct 6, 2024
1 parent 3af4eef commit a5f9c66
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Toshi/Plugins/Include/PPropertyParser/PProperties.h
Original file line number Diff line number Diff line change
Expand Up @@ -93,29 +93,35 @@ class PPROPERTYPARSER_EXPORTS PProperties : Toshi::TObject
m_iPropCount = 0;
}

// $PPropertyParser: FUNCTION 10002b50
Toshi::TQList<PProperty>::Iterator Begin() const
{
return m_oPropSet.Begin();
}
// $PPropertyParser: FUNCTION 10002b10
TBOOL IsEmpty() const
{
return m_oPropSet.IsEmpty();
}

// $PPropertyParser: FUNCTION 10002b20
TINT GetPropertyCount() const
{
return m_iPropCount;
}
// $PPropertyParser: FUNCTION 10002af0
Toshi::TQList<PProperty> &GetPropertySet()
{
return m_oPropSet;
}
// $PPropertyParser: FUNCTION 10002b00
const Toshi::TQList<PProperty> &GetPropertySet() const
{
return m_oPropSet;
}

// $PPropertyParser: FUNCTION 10001560
const PPropertyValue *GetProperty(const PPropertyName &a_rPropertyName) const;
// $PPropertyParser: FUNCTION 10001610
const PPropertyValue *GetProperty(const Toshi::TPCString &a_rPropertyName, TINT a_iIndex) const;
const PPropertyValue *GetProperty(const Toshi::TPCString &a_rPropertyName, const Toshi::TPCString &a_rPropertySubname) const;
const PPropertyValue *GetProperty(const Toshi::TPCString &a_rPropertyName) const;
Expand Down

0 comments on commit a5f9c66

Please sign in to comment.