Budget array

From sc2k-reverse
Revision as of 00:18, 1 July 2025 by 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>")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Struct

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