10 lines
191 B
Java
10 lines
191 B
Java
package fr.jackcartersmith.ob.interfaces;
|
|
|
|
public class PhotonRecieving extends PhotonProducing
|
|
{
|
|
public void recievePhotons(int power)
|
|
{
|
|
this.currentCharge += power;
|
|
}
|
|
}
|