Starsector API
Loading...
Searching...
No Matches
AmmoTrackerAPI.java
Go to the documentation of this file.
1package com.fs.starfarer.api.combat;
2
3public interface AmmoTrackerAPI {
4
5 void setAmmoPerSecond(float ammoPerSecond);
7 void setAmmo(int ammo);
8 boolean usesAmmo();
9 void addOneAmmo();
10 boolean deductOneAmmo();
11 int getAmmo();
14 void resetAmmo();
15 void setMaxAmmo(int maxAmmo);
17 void setReloadSize(float reloadSize);
18 void setReloadProgress(float progress);
19
20}
void setAmmoPerSecond(float ammoPerSecond)