[PlutoCore] Made PlutoApplication's constructor private
This commit is contained in:
parent
a537ba7b76
commit
96239be4ed
|
@ -19,6 +19,7 @@
|
|||
* Added the `IVersion` interface
|
||||
* Added support for version objects
|
||||
* As a result, all fields except the version string are no longer compile-time constants
|
||||
* `[PlutoCore]` Made `PlutoApplication`'s constructor private
|
||||
|
||||
Awaiting implementation:
|
||||
* `[PlutoLib]` Moved `cz.tefek.pluto.io.pluto.pp` to `cz.tefek.pluto.io.plutopackage`
|
||||
|
|
|
@ -31,6 +31,11 @@ public abstract class PlutoApplication
|
|||
|
||||
protected abstract void loop();
|
||||
|
||||
protected PlutoApplication()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* A set of values used to create a new {@link PlutoApplication}.
|
||||
*
|
||||
|
|
Loading…
Reference in New Issue