Budget array: Difference between revisions

From sc2k-reverse
Jump to navigationJump to search
AF (talk | contribs)
Created page with "== Struct == <pre> typedef struct { int iCountMonth[12]; int iFundMonth[12]; int iCurrentCosts; int iFundingPercent; int iYearToDateCost; int iEstimatedCost; } budget_t; </pre>"
 
(No difference)

Latest revision as of 00:18, 1 July 2025

Struct

typedef struct {
	int iCountMonth[12];
	int iFundMonth[12];
	int iCurrentCosts;
	int iFundingPercent;
	int iYearToDateCost;
	int iEstimatedCost;
} budget_t;