MCPcopy Create free account
hub / github.com/McJty/TutorialV3 / Mana

Class Mana

src/main/java/com/example/tutorialv3/manasystem/data/Mana.java:3–17  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1package com.example.tutorialv3.manasystem.data;
2
3public class Mana {
4 private int mana;
5
6 public Mana(int mana) {
7 this.mana = mana;
8 }
9
10 public int getMana() {
11 return mana;
12 }
13
14 public void setMana(int mana) {
15 this.mana = mana;
16 }
17}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected