gh/sun_fields_m.pas

15 lines
189 B
ObjectPascal
Raw Normal View History

2026-01-10 07:09:22 +00:00
unit sun_fields_m;
interface
type
sunStatePtr = ^sunState;
sunState = record
rageMode, bigStep: boolean;
beforeRageSwitch: integer;
end;
implementation
end.