Преглед на файлове

added monospace to import decalaration

mitm преди 5 години
родител
ревизия
16c9f2430d
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      src/docs/asciidoc/jme3/advanced/networking.adoc

+ 1 - 1
src/docs/asciidoc/jme3/advanced/networking.adoc

@@ -170,7 +170,7 @@ a| Server can read an attribute of the HostedConnection.
 
 === Creating Message Types
 
-Each message represents data that you want to transmit between client and server. Common message examples include transformation updates or game actions. For each message type, create a message class that extends com.jme3.network.AbstractMessage. Use the @Serializable annotation from com.jme3.network.serializing.Serializable and create an empty default constructor. Custom constructors, fields, and methods are up to you and depend on the message data that you want to transmit.
+Each message represents data that you want to transmit between client and server. Common message examples include transformation updates or game actions. For each message type, create a message class that extends com.jme3.network.AbstractMessage. Use the @Serializable annotation from `com.jme3.network.serializing.Serializable` and create an empty default constructor. Custom constructors, fields, and methods are up to you and depend on the message data that you want to transmit.
 
 [source,java]
 ----